Mercurial > 510Connectbot
view app/build.gradle @ 490:7545103ec815 stable-1.9.4-2
use foreground service and notification channel on Android 8+
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 14 Oct 2020 14:48:55 -0700 |
parents | 869070df0e80 |
children | c7a947e291db |
line wrap: on
line source
apply plugin: 'com.android.application' android { signingConfigs { release { print "\nNo Console\n" def read = System.in.newReader().&readLine print "\nkey store password" storePassword = read() print "\nkey alias password" keyPassword = read() print "\nDone\n" storeFile = file("../510Connectbot.keystore") storeType = "jks" keyAlias = "510Connectbot" } } compileSdkVersion = 28 buildTypes { release { minifyEnabled = false signingConfig = android.signingConfigs.release ndk { debuggable = false abiFilters 'armeabi-v7a', 'arm64-v8a' } } debug { debuggable = true initWith debug jniDebuggable true externalNativeBuild { ndkBuild { cFlags "-DDEBUG=1" } } ndk { debuggable = true abiFilters 'armeabi-v7a', 'arm64-v8a' } } } flavorDimensions "arch" productFlavors { arm { dimension "arch" } x86 { dimension "arch" } } sourceSets { main { jni { srcDir "Exec" } } } defaultConfig { applicationId = "com.five_ten_sg.connectbot" minSdkVersion = 21 targetSdkVersion = 28 ndk { moduleName = "com_google_ase_Exec" abiFilters 'armeabi-v7a', 'arm64-v8a' } } externalNativeBuild { ndkBuild { path "src/main/jni/Android.mk" } } dependencies { implementation 'com.android.support:support-v4:23.+' // update the 23.0.0 to latest version available } }