2024-03-29 18:56:51 +03:00
|
|
|
/*
|
|
|
|
* Nextcloud - Android Client
|
|
|
|
*
|
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-FileCopyrightText: 2024 Alper Ozturk <alper_ozturk@proton.me>
|
2024-04-08 18:35:50 +03:00
|
|
|
* SPDX-FileCopyrightText: 2023 Álvaro Brey <alvaro@alvarobrey.com>
|
2024-03-29 18:56:51 +03:00
|
|
|
* SPDX-FileCopyrightText: 2023 Andy Scherzinger <info@andy-scherzinger.de>
|
2024-03-29 21:22:56 +03:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2024-03-29 18:56:51 +03:00
|
|
|
*/
|
2023-01-20 18:43:28 +03:00
|
|
|
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'
|
2024-02-26 18:57:41 +03:00
|
|
|
compileSdk 34
|
2023-01-20 18:43:28 +03:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdk 21
|
2024-02-26 18:57:41 +03:00
|
|
|
targetSdk 34
|
2023-01-20 18:43:28 +03:00
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
}
|
|
|
|
}
|
2023-05-09 10:01:19 +03:00
|
|
|
|
2023-01-20 18:43:28 +03:00
|
|
|
compileOptions {
|
2023-05-08 19:37:38 +03:00
|
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
|
|
targetCompatibility JavaVersion.VERSION_17
|
2023-01-20 18:43:28 +03:00
|
|
|
}
|
2023-05-09 10:01:19 +03:00
|
|
|
|
2023-01-20 18:43:28 +03:00
|
|
|
kotlinOptions {
|
2023-05-08 19:37:38 +03:00
|
|
|
jvmTarget = '17'
|
2023-01-20 18:43:28 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation "androidx.appcompat:appcompat:$appCompatVersion"
|
|
|
|
implementation "com.github.zynkware:Document-Scanning-Android-SDK:$documentScannerVersion"
|
|
|
|
}
|