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 {
compileSdkVersion 29 // 29 = Android 10
defaultConfig {
applicationId "net.moasdawiki.app"
minSdkVersion 26 // 26 = Oreo 8.0
targetSdkVersion 29 // should be same as compileSdkVersion
2020-09-13 22:03:06 +02:00
versionCode 18
versionName "2.3.1.0"
2020-01-04 19:43:49 +01:00
archivesBaseName = "moasdawiki-" + versionName + "-" + versionCode
}
sourceSets {
main{
java {
exclude "net/moasdawiki/plugin/sync/SynchronizationPlugin*"
}
}
}
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
}
dependencies {
2020-09-13 22:03:06 +02:00
implementation 'net.moasdawiki:moasdawiki-server:2.3.1'
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'
}