build.gradle 763 B

123456789101112131415161718192021222324252627282930313233
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 23
  4. buildToolsVersion '25.0.0'
  5. defaultConfig {
  6. applicationId "com.ivalentin.margolariak"
  7. minSdkVersion 23
  8. targetSdkVersion 23
  9. multiDexEnabled true
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  15. }
  16. }
  17. dexOptions {
  18. //incremental = true
  19. preDexLibraries = false
  20. javaMaxHeapSize "2g"
  21. }
  22. }
  23. dependencies {
  24. //noinspection GradleDynamicVersion
  25. compile project(':osmbonuspack_6.4')
  26. compile 'com.android.support:multidex:1.0.1'
  27. compile 'org.osmdroid:osmdroid-android:5.6.5@aar'
  28. }