mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
28 lines
564 B
Groovy
28 lines
564 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.1"
|
|
|
|
defaultConfig {
|
|
applicationId "com.freerdp.afreerdp"
|
|
minSdkVersion 14
|
|
targetSdkVersion 25
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
debug {
|
|
jniDebuggable true
|
|
renderscriptDebuggable true
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':freeRDPCore')
|
|
}
|