2019-05-26 01:58:12 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
def keyprops=new Properties()
|
|
|
|
keyprops.load(new FileInputStream(rootProject.file("keystore.properties")))
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
|
|
buildToolsVersion "28.0.0"
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
jniLibs.srcDirs 'src/main/lib'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
release {
|
|
|
|
keyAlias keyprops['keyAlias']
|
|
|
|
keyPassword keyprops['keyPassword']
|
|
|
|
storeFile file(keyprops['storeFile'])
|
|
|
|
storePassword keyprops['storePassword']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.galexander.sshd"
|
2019-05-26 02:31:09 +00:00
|
|
|
minSdkVersion 16
|
2019-05-26 01:58:12 +00:00
|
|
|
targetSdkVersion 28
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|