FreeRDP/client/Android/Studio/freeRDPCore/build.gradle
2017-09-28 11:54:10 +03:00

32 lines
895 B
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion = rootProject.ext.compileSdk
buildToolsVersion = rootProject.ext.buildToolsVersion
defaultConfig {
minSdkVersion rootProject.ext.minSdk
targetSdkVersion rootProject.ext.targetSdk
vectorDrawables.useSupportLibrary = true
versionCode = rootProject.ext.versionCode
versionName = rootProject.ext.versionName
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
debug {
jniDebuggable true
renderscriptDebuggable true
}
}
}
dependencies {
compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:support-v4:25.2.0'
compile 'com.android.support:support-vector-drawable:25.2.0'
}