NeoTerm_System/app/build.gradle

62 lines
1.8 KiB
Groovy
Raw Normal View History

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'
}
}
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "io.neoterm"
minSdkVersion 21
targetSdkVersion 25
2017-06-23 00:03:26 +08:00
versionCode 2
versionName "1.1"
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-13 18:07:14 +08:00
sourceSets {
main {
jniLibs.srcDirs = ['src/main/jniLibs']
}
}
}
buildTypes {
release {
2017-06-15 12:09:53 +08:00
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2017-06-17 12:52:04 +08:00
signingConfig signingConfigs.release
proguardFile 'app/proguard-rules.pro'
}
}
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'
compile project(':chrome-tabs')
2017-06-12 20:57:53 +08:00
implementation 'com.android.support:design:25.3.1'
}