Skip to content

Commit 6876ee0

Browse files
committed
Updated Android Gradle plugin to 0.13.2, fixed lint issue regarding the application icon
1 parent b954a31 commit 6876ee0

File tree

5 files changed

+11
-15
lines changed

5 files changed

+11
-15
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
}
55

66
dependencies {
7-
classpath 'com.android.tools.build:gradle:0.12.2'
7+
classpath 'com.android.tools.build:gradle:0.13.2'
88
}
99
}
1010

library/build.gradle

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
apply plugin: 'com.android.library'
22

3+
dependencies {
4+
compile 'org.apache.httpcomponents:httpclient-android:4.3.5'
5+
}
6+
37
android {
4-
compileSdkVersion 19
5-
buildToolsVersion '19.1'
8+
compileSdkVersion 20
9+
buildToolsVersion '20'
610

711
defaultConfig {
812
minSdkVersion 3
9-
targetSdkVersion 19
13+
targetSdkVersion 20
1014
}
1115

1216
lintOptions {

sample/build.gradle

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
buildscript {
2-
repositories {
3-
mavenCentral()
4-
}
5-
dependencies {
6-
classpath 'com.android.tools.build:gradle:0.12.2'
7-
}
8-
}
91
apply plugin: 'com.android.application'
102

113
repositories {
@@ -16,12 +8,12 @@ repositories {
168
}
179

1810
android {
19-
compileSdkVersion 19
20-
buildToolsVersion '19.1'
11+
compileSdkVersion 20
12+
buildToolsVersion '20'
2113

2214
defaultConfig {
2315
minSdkVersion 3
24-
targetSdkVersion 19
16+
targetSdkVersion 20
2517
}
2618

2719
compileOptions {

sample/src/main/ic_launcher.png

14 KB
Loading
Loading

0 commit comments

Comments
 (0)