55 lines
2.0 KiB
Groovy
55 lines
2.0 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
defaultConfig {
|
|
applicationId "xyz.quaver.pupil"
|
|
minSdkVersion 16
|
|
targetSdkVersion 28
|
|
versionCode 5
|
|
versionName "1.4"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
kotlinOptions {
|
|
freeCompilerArgs += '-Xuse-experimental=kotlin.Experimental'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
def markwonVersion = "3.0.1"
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.1'
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.2.1'
|
|
implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime:0.11.0"
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation 'androidx.preference:preference:1.1.0-alpha05'
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation 'com.github.arimorty:floatingsearchview:2.1.1'
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation "ru.noties.markwon:core:${markwonVersion}"
|
|
implementation 'com.shawnlin:number-picker:2.4.8'
|
|
implementation 'com.github.clans:fab:1.6.4'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
|
|
androidTestImplementation 'androidx.test:runner:1.1.1'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
|
|
implementation project(path: ':libpupil')
|
|
}
|
|
|
|
androidExtensions {
|
|
experimental = true
|
|
}
|