FreeRDP/client/Android/Studio/freeRDPCore/build.gradle

27 lines
533 B
Groovy
Raw Normal View History

apply plugin: 'com.android.library'
android {
compileSdkVersion 25
2017-01-16 18:40:06 +03:00
buildToolsVersion "25.0.2"
defaultConfig {
minSdkVersion 14
targetSdkVersion 25
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
2016-08-04 14:25:52 +03:00
debug {
jniDebuggable true
renderscriptDebuggable true
}
}
}
dependencies {
2017-02-22 16:29:42 +03:00
compile 'com.android.support:appcompat-v7:25.2.0'
}