2016-11-08 08:02:01 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2016-11-08 09:36:43 +00:00
|
|
|
compileSdkVersion 23
|
2016-11-08 08:02:01 +00:00
|
|
|
buildToolsVersion "25.0.0"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "edu.berkeley.boinc"
|
|
|
|
minSdkVersion 16
|
2016-11-08 09:36:43 +00:00
|
|
|
targetSdkVersion 23
|
2016-11-08 08:02:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
|
|
}
|
2016-11-09 17:36:50 +00:00
|
|
|
debug {
|
|
|
|
minifyEnabled false
|
|
|
|
debuggable true
|
|
|
|
}
|
2016-11-08 08:02:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2016-11-08 09:36:43 +00:00
|
|
|
compile 'com.android.support:appcompat-v7:23.1.+'
|
2016-11-08 08:02:01 +00:00
|
|
|
}
|