View difference between Paste ID: FFGJywAm and z1cRrBZC
SHOW: | | - or go back to the newest paste.
1
apply plugin: 'com.android.application'
2
3
android {
4
    compileSdkVersion 21
5
    buildToolsVersion "25.0.0"
6
    compileOptions.encoding = 'ISO-8859-1'
7
8
    defaultConfig {
9-
        applicationId "de.tum.xxx"
9+
        applicationId "yy.zzz.xxx"
10
        minSdkVersion 21
11
        targetSdkVersion 21
12
    }
13
14
    buildTypes {
15
        release {
16
            minifyEnabled false
17
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
18
        }
19
    }
20
}
21
22
dependencies {
23
    compile project(":ndkcode")
24
    compile 'com.android.support:support-v4:21.+'
25
    compile files('libs/jxl.jar')
26
    compile files('libs/metaiosdk.jar')
27
}