Blame client/Android/Studio/freeRDPCore/build.gradle
|
Packit Service |
fa4841 |
apply plugin: 'com.android.library'
|
|
Packit Service |
fa4841 |
|
|
Packit Service |
fa4841 |
android {
|
|
Packit Service |
b1ea74 |
compileSdkVersion = 28
|
|
Packit Service |
b1ea74 |
buildToolsVersion = "28.0.3"
|
|
Packit Service |
fa4841 |
|
|
Packit Service |
fa4841 |
defaultConfig {
|
|
Packit Service |
b1ea74 |
minSdkVersion 21
|
|
Packit Service |
b1ea74 |
targetSdkVersion 28
|
|
Packit Service |
fa4841 |
vectorDrawables.useSupportLibrary = true
|
|
Packit Service |
b1ea74 |
versionCode = rootProject.ext.versionCode
|
|
Packit Service |
fa4841 |
versionName = rootProject.ext.versionName
|
|
Packit Service |
fa4841 |
}
|
|
Packit Service |
fa4841 |
|
|
Packit Service |
fa4841 |
buildTypes {
|
|
Packit Service |
fa4841 |
release {
|
|
Packit Service |
fa4841 |
minifyEnabled false
|
|
Packit Service |
fa4841 |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
Packit Service |
fa4841 |
}
|
|
Packit Service |
fa4841 |
debug {
|
|
Packit Service |
fa4841 |
jniDebuggable true
|
|
Packit Service |
fa4841 |
renderscriptDebuggable true
|
|
Packit Service |
fa4841 |
}
|
|
Packit Service |
fa4841 |
}
|
|
Packit Service |
fa4841 |
}
|
|
Packit Service |
fa4841 |
|
|
Packit Service |
fa4841 |
dependencies {
|
|
Packit Service |
b1ea74 |
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
Packit Service |
b1ea74 |
implementation 'com.android.support:support-v4:28.0.0'
|
|
Packit Service |
b1ea74 |
implementation 'com.android.support:support-vector-drawable:28.0.0'
|
|
Packit Service |
fa4841 |
}
|