Grundaufbau der App
[DHBWCampusApp.git] / app / build.gradle
1 apply plugin: 'com.android.application'
2
3 android {
4     compileSdkVersion 23
5     buildToolsVersion "23.0.2"
6
7     defaultConfig {
8         applicationId "de.dhbwloe.campusapp"
9         minSdkVersion 16
10         targetSdkVersion 23
11         versionCode 1
12         versionName "1.0"
13     }
14     buildTypes {
15         release {
16             minifyEnabled false
17             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18         }
19     }
20     packagingOptions {
21         exclude 'META-INF/DEPENDENCIES.txt'
22         exclude 'META-INF/LICENSE.txt'
23         exclude 'META-INF/NOTICE.txt'
24         exclude 'META-INF/NOTICE'
25         exclude 'META-INF/LICENSE'
26         exclude 'META-INF/DEPENDENCIES'
27         exclude 'META-INF/notice.txt'
28         exclude 'META-INF/license.txt'
29         exclude 'META-INF/dependencies.txt'
30         exclude 'META-INF/LGPL2.1'
31     }
32 }
33
34 dependencies {
35     compile fileTree(dir: 'libs', include: ['*.jar'])
36     testCompile 'junit:junit:4.12'
37     compile 'org.mnode.ical4j:ical4j:1.0.5'
38     compile 'backport-util-concurrent:backport-util-concurrent:3.1'
39     compile 'commons-codec:commons-codec:1.8'
40     compile 'commons-lang:commons-lang:2.6'
41     compile 'com.loopj.android:android-async-http:1.4.9'
42     compile 'org.jsoup:jsoup:1.8.3'
43     compile 'org.apache.commons:commons-lang3:3.1'
44     compile 'com.android.support:appcompat-v7:23.1.1'
45     compile 'com.android.support:design:23.1.1'
46     compile 'com.android.support:support-v4:23.1.1'
47 }
48
49
50
51
52
53
54
55
56
57
58
59
60