build.gradle 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 25
  4. buildToolsVersion "25.0.2"
  5. defaultConfig {
  6. applicationId "ml.adamsprogs.einstein"
  7. minSdkVersion 15
  8. targetSdkVersion 25
  9. versionCode 8
  10. versionName "1.2"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. jackOptions {
  13. enabled true
  14. }
  15. }
  16. buildTypes {
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. compileOptions {
  23. targetCompatibility 1.8
  24. sourceCompatibility 1.8
  25. }
  26. }
  27. dependencies {
  28. compile fileTree(include: ['*.jar'], dir: 'libs')
  29. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  30. exclude group: 'com.android.support', module: 'support-annotations'
  31. })
  32. compile 'com.android.support:appcompat-v7:25.1.1'
  33. compile 'com.android.support:design:25.1.1'
  34. testCompile 'junit:junit:4.12'
  35. compile project(':game')
  36. compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'
  37. }