1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-27 09:48:08 +00:00
simplesshd/app/build.gradle
Greg Alexander 9b451c9b29 Define the channel for the notification, which requires using
NotificationCompat, which I decided to do using "AndroidX".
Anyways, this builds, but I don't know if it works.
2019-05-26 20:47:59 -04:00

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'
}