Files
moasdawiki-app/app/build.gradle
T
Herbert Reiter b25bb0d1d2 - Update to moasdawiki-server 2.3.3
- new release
2020-10-11 18:52:55 +02:00

34 lines
1009 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 29 // 29 = Android 10
defaultConfig {
applicationId "net.moasdawiki.app"
minSdkVersion 26 // 26 = Oreo 8.0
targetSdkVersion 29 // should be same as compileSdkVersion
versionCode 19
versionName "2.3.3.0"
archivesBaseName = "moasdawiki-" + versionName + "-" + versionCode
}
sourceSets {
main {
java {
exclude "net/moasdawiki/plugin/sync/SynchronizationPlugin*"
}
}
}
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
}
dependencies {
implementation 'net.moasdawiki:moasdawiki-server:2.3.3'
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.preference:preference:1.1.1'
compileOnly 'org.jetbrains:annotations:19.0.0'
testImplementation 'org.testng:testng:6.14.3'
}