Skip to content
This repository was archived by the owner on Feb 11, 2022. It is now read-only.

Commit 9e8f032

Browse files
committed
Merge pull request #20 from novoda/minor_project_clean_ups
Minor project clean ups
2 parents 314b471 + 3061242 commit 9e8f032

5 files changed

Lines changed: 11 additions & 24 deletions

File tree

build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
buildscript {
22
repositories {
3+
jcenter()
34
mavenCentral()
45
maven {
56
url "https://oss.sonatype.org/content/repositories/snapshots"
67
}
78
}
89
dependencies {
9-
classpath 'com.android.tools.build:gradle:1.0.0'
10-
classpath 'com.novoda:gradle-android-command-plugin:1.2.1'
10+
classpath 'com.android.tools.build:gradle:1.1.0'
11+
classpath 'com.novoda:gradle-android-command-plugin:1.3.0'
1112
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.2'
1213
}
1314
}
@@ -22,6 +23,6 @@ allprojects {
2223
}
2324

2425
ext {
25-
buildToolsVersion = '21.1.2'
26-
compileSdkVersion = 21
26+
BUILD_TOOLS_VERSION = '21.1.2'
27+
COMPILE_SDK_VERSION = 21
2728
}

buildSrc/local.properties

Lines changed: 0 additions & 11 deletions
This file was deleted.

demo-assethelper/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ apply plugin: 'android-command'
33
apply plugin: 'sqlite-analyzer'
44

55
android {
6-
buildToolsVersion rootProject.ext.buildToolsVersion
7-
compileSdkVersion rootProject.ext.compileSdkVersion
6+
buildToolsVersion BUILD_TOOLS_VERSION
7+
compileSdkVersion COMPILE_SDK_VERSION
88

99
defaultConfig {
1010
minSdkVersion 8
11-
targetSdkVersion 19
1211
}
1312
}
1413

demo-auto/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ apply plugin: 'android-command'
44
apply plugin: 'sqlite-analyzer'
55

66
android {
7-
buildToolsVersion rootProject.ext.buildToolsVersion
8-
compileSdkVersion rootProject.ext.compileSdkVersion
7+
buildToolsVersion BUILD_TOOLS_VERSION
8+
compileSdkVersion COMPILE_SDK_VERSION
99

1010
defaultConfig {
1111
minSdkVersion 8
12-
targetSdkVersion 19
1312
}
1413

1514
packagingOptions {

demo-sqliteprovider/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ apply plugin: 'android-command'
33
apply plugin: 'sqlite-analyzer'
44

55
android {
6-
buildToolsVersion rootProject.ext.buildToolsVersion
7-
compileSdkVersion rootProject.ext.compileSdkVersion
6+
buildToolsVersion BUILD_TOOLS_VERSION
7+
compileSdkVersion COMPILE_SDK_VERSION
88

99
defaultConfig {
1010
minSdkVersion 14
11-
targetSdkVersion 19
1211
}
1312
}
1413

0 commit comments

Comments
 (0)