mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2025-06-03 00:00:20 +00:00
42 lines
1012 B
Groovy
42 lines
1012 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion = 28
|
|
buildToolsVersion = "28.0.3"
|
|
|
|
defaultConfig {
|
|
applicationId "com.freerdp.afreerdp"
|
|
minSdkVersion 21
|
|
targetSdkVersion 28
|
|
vectorDrawables.useSupportLibrary = true
|
|
versionCode = 15
|
|
versionName = rootProject.ext.versionName
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
storeFile file(RELEASE_STORE_FILE)
|
|
storePassword RELEASE_STORE_PASSWORD
|
|
keyAlias RELEASE_KEY_ALIAS
|
|
keyPassword RELEASE_KEY_PASSWORD
|
|
storeType "jks"
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
signingConfig signingConfigs.release
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
debug {
|
|
jniDebuggable true
|
|
renderscriptDebuggable true
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':freeRDPCore')
|
|
}
|