build.gradle 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 23
  4. buildToolsVersion "23.0.1"
  5. signingConfigs {
  6. production {
  7. keyAlias 'afollestad'
  8. keyPassword 'aidan1995'
  9. storeFile file('./keystore.jks')
  10. storePassword 'aidan1995'
  11. }
  12. }
  13. defaultConfig {
  14. applicationId "com.afollestad.materialdialogssample"
  15. minSdkVersion 9
  16. targetSdkVersion 23
  17. versionCode 142
  18. versionName "0.8.1.0"
  19. }
  20. lintOptions {
  21. abortOnError false
  22. }
  23. buildTypes {
  24. debug {
  25. signingConfig signingConfigs.production
  26. }
  27. release {
  28. signingConfig signingConfigs.production
  29. minifyEnabled true
  30. shrinkResources true
  31. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  32. }
  33. }
  34. }
  35. dependencies {
  36. compile fileTree(dir: 'libs', include: ['*.jar'])
  37. compile project(':core')
  38. compile 'com.android.support:gridlayout-v7:23.0.1'
  39. compile project(':commons')
  40. }