mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 05:05:31 +03:00
40 lines
920 B
Groovy
40 lines
920 B
Groovy
|
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'
|
||
|
compileSdk 33
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdk 21
|
||
|
targetSdk 33
|
||
|
|
||
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
}
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
kotlinOptions {
|
||
|
jvmTarget = '1.8'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation "androidx.appcompat:appcompat:$appCompatVersion"
|
||
|
implementation "com.github.zynkware:Document-Scanning-Android-SDK:$documentScannerVersion"
|
||
|
}
|