24 lines
485 B
Groovy
24 lines
485 B
Groovy
|
|
apply plugin: 'com.android.application'
|
||
|
|
|
||
|
|
android {
|
||
|
|
compileSdkVersion 17
|
||
|
|
buildToolsVersion "19.1.0"
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
applicationId "com.example.notifications"
|
||
|
|
minSdkVersion 7
|
||
|
|
targetSdkVersion 18
|
||
|
|
}
|
||
|
|
|
||
|
|
buildTypes {
|
||
|
|
release {
|
||
|
|
minifyEnabled false
|
||
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
compile 'com.android.support:support-v4:18.+'
|
||
|
|
}
|