plugins {
|
id 'com.android.application'
|
id 'kotlin-android'
|
// id "ua.eshepelyuk.ManifestClasspath" version "1.0.0"
|
}
|
|
android {
|
compileSdkVersion 28
|
|
defaultConfig {
|
applicationId "cn.flightfeather.thirdapp"
|
minSdkVersion 19
|
targetSdkVersion 28
|
versionCode 33
|
versionName "1.1.14.17"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
renderscriptTargetApi 25
|
renderscriptSupportModeEnabled true
|
multiDexEnabled true
|
}
|
|
buildTypes {
|
release {
|
minifyEnabled false
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
}
|
}
|
compileOptions {
|
sourceCompatibility JavaVersion.VERSION_1_8
|
targetCompatibility JavaVersion.VERSION_1_8
|
}
|
kotlinOptions {
|
jvmTarget = '1.8'
|
}
|
packagingOptions {
|
doNotStrip "*/armeabi/*.so"
|
doNotStrip "*/armeabi-v7a/*.so"
|
doNotStrip "*/arm64-v8a/*.so"
|
doNotStrip "*/x86/*.so"
|
doNotStrip "*/x86_64/*.so"
|
doNotStrip "*/mips/*.so"
|
doNotStrip "*/mips64/*.so"
|
//...
|
}
|
}
|
|
dependencies {
|
|
implementation project(path: ':app')
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
testImplementation 'junit:junit:4.13.2'
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
}
|