/[projects]/android/TrainInfo/build.gradle
ViewVC logotype

Annotation of /android/TrainInfo/build.gradle

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2472 - (hide annotations) (download)
Sat Mar 21 11:58:35 2015 UTC (9 years, 2 months ago) by torben
File size: 1755 byte(s)
depend on simple xml
1 torben 2469 apply plugin: 'android-sdk-manager'
2     apply plugin: 'com.android.application'
3    
4     buildscript {
5     repositories {
6     jcenter()
7     }
8     dependencies {
9     classpath 'com.android.tools.build:gradle:1.0.1'
10     classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.+'
11    
12     // NOTE: Do not place your application dependencies here: they belong
13     // in the individual module build.gradle files
14     }
15     }
16    
17     allprojects {
18     repositories {
19     jcenter()
20     }
21     }
22    
23    
24     android {
25 torben 2470 //compileSdkVersion 18
26     compileSdkVersion "Google Inc.:Google APIs:17"
27 torben 2469 buildToolsVersion "20.0.0"
28    
29     defaultConfig {
30 torben 2470 minSdkVersion 9
31     targetSdkVersion 9
32 torben 2469 versionCode 1
33     versionName "1.0"
34     }
35     lintOptions {
36     abortOnError false
37     }
38    
39     buildTypes {
40     release {
41     minifyEnabled false
42     //proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
43     }
44     }
45     }
46    
47    
48     repositories {
49     maven {
50     url "http://app.t-hoerup.dk/artifactory/ext-release-local"
51     }
52     }
53    
54     dependencies {
55     // compile project(":lib")
56     // compile 'com.android.support:appcompat-v7:19.0.1'
57     // compile fileTree(dir: 'libs', include: ['*.jar'])
58 torben 2470 //compile 'com.google.android.gms:play-services:3.1.36'
59     // compile 'com.google.maps.android:android-maps-utils:0.3+'
60     //compile 'com.google.android.gms:play-services-maps:6.+'
61 torben 2469
62 torben 2470
63 torben 2469 compile group: 'dk.thoerup', name: 'GenericJavaUtils', version: '1.0'
64     compile group: 'dk.thoerup', name: 'TrainInfoCommon', version: '1.0'
65     compile project(":AndroidUtils")
66 torben 2472 //compile files('libs/trace.jar')
67    
68     compile('org.simpleframework:simple-xml:2.7.+'){
69     exclude module: 'stax'
70     exclude module: 'stax-api'
71     exclude module: 'xpp3'
72     }
73 torben 2469 }

  ViewVC Help
Powered by ViewVC 1.1.20