mirror of https://github.com/BOINC/boinc.git
28 lines
569 B
Groovy
28 lines
569 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "25.0.0"
|
|
|
|
defaultConfig {
|
|
applicationId "edu.berkeley.boinc"
|
|
minSdkVersion 16
|
|
targetSdkVersion 23
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
debug {
|
|
minifyEnabled false
|
|
debuggable true
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.android.support:appcompat-v7:23.1.+'
|
|
}
|