1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- buildscript {
- repositories {
- mavenCentral()
- }
- dependencies {
- classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
- }
- }
- apply plugin: 'com.android.application'
- apply plugin: 'com.neenbedankt.android-apt'
- ext {
- PUBLISH_VERSION = '0.8.6.0'
- SUPPORT_LIBRARY_VERSION = '24.0.0'
- BUILD_TOOLS = "24.0.0"
- TARGET_SDK = 24
- }
- android {
- compileSdkVersion TARGET_SDK
- buildToolsVersion BUILD_TOOLS
- signingConfigs {
- production {
- keyAlias 'afollestad'
- keyPassword 'aidan1995'
- storeFile file('./keystore.jks')
- storePassword 'aidan1995'
- }
- }
- defaultConfig {
- applicationId "com.afollestad.materialdialogssample"
- minSdkVersion 9
- targetSdkVersion TARGET_SDK
- versionCode 162
- versionName PUBLISH_VERSION
- }
- 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 project(':core')
- compile project(':commons')
- compile "com.android.support:gridlayout-v7:$SUPPORT_LIBRARY_VERSION"
- compile 'com.jakewharton:butterknife:8.1.0'
- apt 'com.jakewharton:butterknife-compiler:8.1.0'
- }
|