Files
moasdawiki-app/app/build.gradle
T

34 lines
1008 B
Groovy
Raw Normal View History

2020-01-04 19:43:49 +01:00
apply plugin: 'com.android.application'
android {
2020-12-27 16:30:08 +01:00
compileSdkVersion 30 // 30 = Android 11
2020-01-04 19:43:49 +01:00
defaultConfig {
applicationId "net.moasdawiki.app"
minSdkVersion 26 // 26 = Oreo 8.0
2020-12-27 16:30:08 +01:00
targetSdkVersion 30 // should be same as compileSdkVersion
2021-01-31 15:42:58 +01:00
versionCode 23
versionName "2.5.0.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 {
2021-01-31 15:42:58 +01:00
implementation 'net.moasdawiki:moasdawiki-server:2.5.0'
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'
2020-12-27 16:30:08 +01:00
compileOnly 'org.jetbrains:annotations:20.1.0'
testImplementation 'org.testng:testng:7.3.0'
2020-01-04 19:43:49 +01:00
}