2014-11-23 14:49:23 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2015-07-02 13:10:43 +00:00
|
|
|
compileSdkVersion 22
|
|
|
|
buildToolsVersion "22.0.1"
|
2014-11-23 14:49:23 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "xdsopl.robot36"
|
2014-11-25 20:56:37 +00:00
|
|
|
minSdkVersion 15
|
2015-07-02 13:10:43 +00:00
|
|
|
targetSdkVersion 22
|
2015-02-26 15:56:23 +00:00
|
|
|
versionCode 29
|
|
|
|
versionName "1.28"
|
2014-11-23 14:49:23 +00:00
|
|
|
renderscriptTargetApi 19
|
2014-12-05 11:20:24 +00:00
|
|
|
renderscriptSupportModeEnabled true
|
2014-11-23 14:49:23 +00:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2014-12-05 11:20:24 +00:00
|
|
|
minifyEnabled false
|
2014-11-23 14:49:23 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
2015-05-20 08:08:48 +00:00
|
|
|
compile "com.android.support:support-v4:22.1.1"
|
2014-11-23 14:49:23 +00:00
|
|
|
}
|