2017-06-11 19:24:09 +08:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
|
|
|
android {
|
2017-06-17 12:52:04 +08:00
|
|
|
signingConfigs {
|
|
|
|
release {
|
|
|
|
keyAlias 'kiva'
|
|
|
|
keyPassword 'k12fd15dp'
|
|
|
|
storeFile file('docs/kiva.keystore')
|
|
|
|
storePassword 'k12fd15dp'
|
|
|
|
}
|
|
|
|
}
|
2017-06-11 19:24:09 +08:00
|
|
|
compileSdkVersion 25
|
|
|
|
buildToolsVersion "25.0.2"
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "io.neoterm"
|
|
|
|
minSdkVersion 21
|
|
|
|
targetSdkVersion 25
|
2017-07-03 03:51:58 +08:00
|
|
|
versionCode 4
|
|
|
|
versionName "1.1.2"
|
2017-06-11 19:24:09 +08:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
cppFlags "-std=c++11"
|
2017-06-11 21:53:48 +08:00
|
|
|
abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a'
|
2017-06-11 19:24:09 +08:00
|
|
|
}
|
|
|
|
}
|
2017-06-13 18:07:14 +08:00
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
jniLibs.srcDirs = ['src/main/jniLibs']
|
|
|
|
}
|
|
|
|
}
|
2017-06-11 19:24:09 +08:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2017-06-15 12:09:53 +08:00
|
|
|
minifyEnabled true
|
2017-06-11 19:24:09 +08:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2017-06-17 12:52:04 +08:00
|
|
|
signingConfig signingConfigs.release
|
|
|
|
proguardFile 'app/proguard-rules.pro'
|
2017-06-11 19:24:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
path "CMakeLists.txt"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
|
|
})
|
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
2017-06-18 11:22:50 +08:00
|
|
|
compile 'org.greenrobot:eventbus:3.0.0'
|
2017-06-11 19:24:09 +08:00
|
|
|
compile project(':chrome-tabs')
|
2017-06-12 20:57:53 +08:00
|
|
|
implementation 'com.android.support:design:25.3.1'
|
2017-07-01 00:09:23 +08:00
|
|
|
compile 'com.github.wrdlbrnft:modular-adapter:0.2.0.6'
|
|
|
|
compile 'com.github.wrdlbrnft:sorted-list-adapter:0.2.0.19'
|
|
|
|
compile 'com.simplecityapps:recyclerview-fastscroll:1.0.16'
|
|
|
|
|
2017-06-11 19:24:09 +08:00
|
|
|
}
|