build.gradle 722 B

1234567891011121314151617181920212223242526272829303132
  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 'com.android.support:multidex:1.0.1'
  26. compile 'org.osmdroid:osmdroid-android:5.6.5@aar'
  27. }