mirror of
http://galexander.org/git/simplesshd.git
synced 2024-11-17 21:08:28 +00:00
43 lines
970 B
Groovy
43 lines
970 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
def keyprops=new Properties()
|
|
keyprops.load(new FileInputStream(rootProject.file("keystore.properties")))
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion "28.0.3"
|
|
|
|
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"
|
|
minSdkVersion 17
|
|
targetSdkVersion 28
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
signingConfig signingConfigs.release
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|
|
dependencies {
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.leanback:leanback:1.0.0'
|
|
}
|