43 lines
1.3 KiB
Groovy
Executable file
43 lines
1.3 KiB
Groovy
Executable file
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 15
|
|
buildToolsVersion '26.0.1'
|
|
|
|
defaultConfig {
|
|
applicationId "com.ericsson.uecontrol"
|
|
minSdkVersion 15
|
|
targetSdkVersion 19
|
|
versionCode 41
|
|
versionName "1.0.41"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
zipAlignEnabled true
|
|
}
|
|
}
|
|
packagingOptions {
|
|
exclude 'META-INF/DEPENDENCIES.txt'
|
|
exclude 'META-INF/LICENSE.txt'
|
|
exclude 'META-INF/NOTICE.txt'
|
|
exclude 'META-INF/NOTICE'
|
|
exclude 'META-INF/LICENSE'
|
|
exclude 'META-INF/DEPENDENCIES'
|
|
exclude 'META-INF/notice.txt'
|
|
exclude 'META-INF/license.txt'
|
|
exclude 'META-INF/dependencies.txt'
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
// You must install or update the Support Repository through the SDK manager to use this dependency.
|
|
compile 'com.android.support:support-v4:25.+'
|
|
}
|
|
|