mirror of
http://galexander.org/git/simplesshd.git
synced 2024-11-27 17:58:13 +00:00
9b451c9b29
NotificationCompat, which I decided to do using "AndroidX". Anyways, this builds, but I don't know if it works.
42 lines
916 B
Groovy
42 lines
916 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 16
|
|
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'
|
|
}
|