| 1234567891011121314151617181920212223242526272829303132 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 23
- buildToolsVersion '25.0.0'
- defaultConfig {
- applicationId "com.ivalentin.margolariak"
- minSdkVersion 23
- targetSdkVersion 23
- multiDexEnabled true
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- }
- }
- dexOptions {
- //incremental = true
- preDexLibraries = false
- javaMaxHeapSize "2g"
- }
- }
- dependencies {
- //noinspection GradleDynamicVersion
- compile 'com.android.support:multidex:1.0.1'
- compile 'org.osmdroid:osmdroid-android:5.6.5@aar'
- }
|