1234567891011121314151617181920212223 |
- apply plugin: 'com.android.application'
-
- android {
- compileSdkVersion 22
- buildToolsVersion '22.0.1'
- defaultConfig {
- applicationId 'technocracy.arashi.teknik'
- minSdkVersion 19
- targetSdkVersion 22
- }
- buildTypes {
- release {
- minifyEnabled true
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- }
- }
- productFlavors {
- }
- }
-
- dependencies {
- compile 'com.android.support:support-v4:21.0.3'
- }
|