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

Contents of /android/TrainInfo/build.gradle

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2469 - (show annotations) (download)
Fri Mar 20 21:36:47 2015 UTC (9 years, 1 month ago) by torben
File size: 1407 byte(s)
gradle
1 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 compileSdkVersion 18
26 buildToolsVersion "20.0.0"
27
28 defaultConfig {
29 minSdkVersion 3
30 targetSdkVersion 3
31 versionCode 1
32 versionName "1.0"
33 }
34 lintOptions {
35 abortOnError false
36 }
37
38 buildTypes {
39 release {
40 minifyEnabled false
41 //proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
42 }
43 }
44 }
45
46
47 repositories {
48 maven {
49 url "http://app.t-hoerup.dk/artifactory/ext-release-local"
50 }
51 }
52
53 dependencies {
54 // compile project(":lib")
55 // compile 'com.android.support:appcompat-v7:19.0.1'
56 // compile fileTree(dir: 'libs', include: ['*.jar'])
57 compile 'com.google.android.gms:play-services:3.1.36'
58
59 compile group: 'dk.thoerup', name: 'GenericJavaUtils', version: '1.0'
60 compile group: 'dk.thoerup', name: 'TrainInfoCommon', version: '1.0'
61 compile project(":AndroidUtils")
62 }

  ViewVC Help
Powered by ViewVC 1.1.20