Files
moasdawiki-app/app/build.gradle
T

34 lines
1009 B
Groovy
Raw Permalink Normal View History

2020-01-04 19:43:49 +01:00
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
2020-10-11 18:52:55 +02:00
versionCode 19
versionName "2.3.3.0"
2020-01-04 19:43:49 +01:00
archivesBaseName = "moasdawiki-" + versionName + "-" + versionCode
}
sourceSets {
2020-10-11 18:52:55 +02:00
main {
2020-01-04 19:43:49 +01:00
java {
exclude "net/moasdawiki/plugin/sync/SynchronizationPlugin*"
}
}
}
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
}
dependencies {
2020-10-11 18:52:55 +02:00
implementation 'net.moasdawiki:moasdawiki-server:2.3.3'
2020-01-04 19:43:49 +01:00
implementation fileTree(include: ['*.jar'], dir: 'libs')
2020-09-08 22:43:28 +02:00
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.preference:preference:1.1.1'
compileOnly 'org.jetbrains:annotations:19.0.0'
2020-01-04 19:43:49 +01:00
testImplementation 'org.testng:testng:6.14.3'
}