mirror of https://github.com/Corsage/Masterani.git
48 lines
1.6 KiB
Groovy
48 lines
1.6 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
androidExtensions {
|
|
experimental = true
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 26
|
|
buildToolsVersion "26.0.1"
|
|
defaultConfig {
|
|
applicationId "edu.jc.corsage.masterani"
|
|
minSdkVersion 19
|
|
targetSdkVersion 26
|
|
versionCode 1
|
|
versionName "1.0"
|
|
vectorDrawables.useSupportLibrary = true
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
|
|
implementation 'com.android.support:appcompat-v7:26.1.0'
|
|
implementation 'com.android.support:design:26.1.0'
|
|
implementation 'com.android.support:preference-v7:26.1.0'
|
|
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
|
|
implementation 'com.squareup.moshi:moshi-kotlin:1.5.0'
|
|
implementation 'com.github.bumptech.glide:glide:4.0.0'
|
|
implementation 'com.google.android.exoplayer:exoplayer:r2.5.1'
|
|
implementation 'org.jsoup:jsoup:1.10.3'
|
|
implementation 'com.android.support:support-v4:26.1.0'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.1'
|
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
|
|
implementation project(':expandabletextview')
|
|
}
|