Skip to content

Commit 78e74c2

Browse files
committed
Gradle fixes
1 parent 78f4200 commit 78e74c2

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
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.7.+'
7+
classpath 'com.android.tools.build:gradle:+'
88
}
99
}
1010

library/build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ apply plugin: 'android-library'
22

33
android {
44
compileSdkVersion 19
5-
buildToolsVersion '19.0.0'
5+
buildToolsVersion '19.0.1'
6+
7+
defaultConfig {
8+
minSdkVersion 3
9+
targetSdkVersion 19
10+
}
611

712
lintOptions {
813
abortOnError false

library/src/main/AndroidManifest.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
android:versionName="1.4.5-SNAPSHOT"
55
android:versionCode="145">
66

7-
<uses-sdk
8-
android:minSdkVersion="3" />
9-
107
<uses-permission android:name="android.permission.INTERNET" />
118

129
<application />

sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717

1818
android {
1919
compileSdkVersion 19
20-
buildToolsVersion '19.0.0'
20+
buildToolsVersion '19.0.1'
2121

2222
defaultConfig {
2323
minSdkVersion 3

sample/src/main/AndroidManifest.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66

77
<uses-permission android:name="android.permission.INTERNET"/>
88

9-
<uses-sdk
10-
android:minSdkVersion="3" />
11-
129
<application
1310
android:icon="@drawable/ic_launcher"
1411
android:label="@string/app_name"

0 commit comments

Comments
 (0)