/* * Nextcloud - Android Client * * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors * SPDX-FileCopyrightText: 2024 Alper Ozturk * SPDX-FileCopyrightText: 2023 Álvaro Brey * SPDX-FileCopyrightText: 2023 Andy Scherzinger * SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only */ buildscript { dependencies { classpath "com.android.tools.build:gradle:$androidPluginVersion" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } apply plugin: "com.android.library" apply plugin: "kotlin-android" android { namespace = "com.nextcloud.appscan" defaultConfig { minSdk = 27 targetSdk = 35 compileSdk = 35 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled = false } } compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = "17" } } dependencies { implementation "androidx.appcompat:appcompat:$appCompatVersion" implementation "com.github.Hazzatur:Document-Scanning-Android-SDK:$documentScannerVersion" implementation "com.github.nextcloud.android-common:ui:$androidCommonLibraryVersion" }