ue-control/app/build.gradle

40 lines
1.1 KiB
Groovy
Raw Normal View History

2014-07-31 15:01:44 +02:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 15
2014-07-31 15:01:44 +02:00
buildToolsVersion '19.1.0'
defaultConfig {
applicationId "com.ericsson.uecontrol"
minSdkVersion 15
targetSdkVersion 19
2015-02-09 13:57:15 +01:00
versionCode 35
versionName "1.0.35"
2014-07-31 15:01:44 +02:00
}
buildTypes {
release {
2015-01-29 18:03:59 +01:00
minifyEnabled false
2014-07-31 15:01:44 +02:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2015-01-29 15:51:45 +01:00
zipAlignEnabled true
2014-07-31 15:01:44 +02:00
}
}
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'
}
2014-07-31 15:01:44 +02:00
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
// You must install or update the Support Repository through the SDK manager to use this dependency.
compile 'com.android.support:support-v4:+'
}