FreeRDP/client/Android/Studio/freeRDPCore/build.gradle
2016-10-06 13:43:07 +02:00

27 lines
533 B
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion 21
buildToolsVersion "24.0.0"
defaultConfig {
minSdkVersion 14
targetSdkVersion 21
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
debug {
jniDebuggable true
renderscriptDebuggable true
}
}
}
dependencies {
compile 'com.android.support:appcompat-v7:21.0.3'
}