| apply plugin: 'com.android.application' |
| |
| android { |
| compileSdkVersion 25 |
| buildToolsVersion "25.0.2" |
| |
| lintOptions { |
| checkReleaseBuilds false |
| abortOnError false |
| } |
| |
| applicationVariants.all { variant -> |
| variant.outputs.each { output -> |
| output.outputFile = new File( |
| output.outputFile.parent, "themeinterfacer_" + versionCode + ".apk") |
| } |
| } |
| |
| defaultConfig { |
| applicationId "projekt.interfacer" |
| minSdkVersion 25 |
| targetSdkVersion 25 |
| } |
| |
| defaultConfig { |
| jackOptions { |
| enabled true |
| } |
| } |
| |
| compileOptions { |
| incremental true |
| sourceCompatibility JavaVersion.VERSION_1_8 |
| targetCompatibility JavaVersion.VERSION_1_8 |
| } |
| |
| dexOptions { |
| javaMaxHeapSize '2048m' |
| } |
| |
| buildTypes { |
| debug { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
| } |
| release { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
| } |
| } |
| |
| dependencies { |
| testCompile 'junit:junit:4.12' |
| } |
| } |