Skip to content

Commit db86ee9

Browse files
committed
Bump build system
1 parent 5d098ca commit db86ee9

File tree

5 files changed

+8
-11
lines changed

5 files changed

+8
-11
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:1.1.0'
8+
classpath 'com.android.tools.build:gradle:2.1.2'
99

1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files

example/build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 19
5-
buildToolsVersion "19.1.0"
4+
compileSdkVersion 24
5+
buildToolsVersion "24.0.1"
66

77
defaultConfig {
88
applicationId "net.ypresto.androidtranscoder.example"
99
minSdkVersion 18
10-
targetSdkVersion 19
10+
targetSdkVersion 24
1111
versionCode 1
1212
versionName "1.0"
1313
}
@@ -21,5 +21,4 @@ android {
2121

2222
dependencies {
2323
compile project(':lib')
24-
compile fileTree(dir: 'libs', include: ['*.jar'])
2524
}

example/src/main/AndroidManifest.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="net.ypresto.androidtranscoder.example" >
44

5-
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
6-
75
<application
86
android:allowBackup="true"
97
android:icon="@drawable/ic_launcher"

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip

lib/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ apply plugin: 'com.android.library'
1111
apply plugin: 'bintray-release'
1212

1313
android {
14-
compileSdkVersion 21
15-
buildToolsVersion "21.1.2"
14+
compileSdkVersion 24
15+
buildToolsVersion "24.0.1"
1616

1717
defaultConfig {
1818
minSdkVersion 18
19-
targetSdkVersion 21
19+
targetSdkVersion 24
2020
}
2121

2222
buildTypes {

0 commit comments

Comments
 (0)