123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 23
- buildToolsVersion "23.0.1"
- signingConfigs {
- production {
- keyAlias 'afollestad'
- keyPassword 'aidan1995'
- storeFile file('./keystore.jks')
- storePassword 'aidan1995'
- }
- }
- defaultConfig {
- applicationId "com.afollestad.materialdialogssample"
- minSdkVersion 9
- targetSdkVersion 23
- versionCode 152
- versionName "0.8.5.1"
- }
- lintOptions {
- abortOnError false
- }
- buildTypes {
- debug {
- signingConfig signingConfigs.production
- }
- release {
- signingConfig signingConfigs.production
- minifyEnabled true
- shrinkResources true
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- compile project(':core')
- compile 'com.android.support:gridlayout-v7:23.1.1'
- compile 'com.jakewharton:butterknife:7.0.1'
- compile project(':commons')
- }
|