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

Annotation of /android/Side9/build.gradle

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2461 - (hide annotations) (download)
Fri Mar 20 15:09:11 2015 UTC (9 years, 2 months ago) by torben
File size: 1186 byte(s)
add gradle build file
1 torben 2461 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    
35     buildTypes {
36     release {
37     minifyEnabled true
38     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
39     }
40     }
41     }
42    
43    
44     repositories {
45     maven {
46     url "http://app.t-hoerup.dk/artifactory/ext-release-local"
47     }
48     }
49    
50     dependencies {
51     // compile project(":lib")
52     // compile 'com.android.support:appcompat-v7:19.0.1'
53     // compile fileTree(dir: 'libs', include: ['*.jar'])
54     compile group: 'dk.thoerup', name: 'GenericJavaUtils', version: '1.0'
55     }

  ViewVC Help
Powered by ViewVC 1.1.20