Skip to content

Commit 41f28c1

Browse files
authored
Merge pull request #392 from mazzonem/UpdateTargetSDK
Update compile SDK and support lib to 24
2 parents 6c4d5b5 + e72429a commit 41f28c1

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

library/build.gradle

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

33
android {
4-
compileSdkVersion 23
5-
buildToolsVersion '23.0.3'
4+
compileSdkVersion 24
5+
buildToolsVersion '24.0.0'
66

77
defaultConfig {
88
minSdkVersion 4
9-
targetSdkVersion 23
9+
targetSdkVersion 24
1010
versionCode 1
1111
versionName "1.0"
1212
}
1313
}
1414

1515
dependencies {
16-
compile "com.android.support:support-v4:23.3.0"
16+
compile "com.android.support:support-v4:24.1.1"
1717
}
1818

1919
apply from: 'https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.0.0/gradle-android-javadocs.gradle'

sample/build.gradle

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

33
android {
4-
compileSdkVersion 23
5-
buildToolsVersion '23.0.3'
4+
compileSdkVersion 24
5+
buildToolsVersion '24.0.0'
66

77
defaultConfig {
88
applicationId "uk.co.senab.photoview.sample"
99
minSdkVersion 8
10-
targetSdkVersion 23
11-
versionCode 124
12-
versionName "1.2.4"
10+
targetSdkVersion 24
11+
versionCode 126
12+
versionName "1.2.6"
1313
}
1414
lintOptions {
1515
abortOnError false
@@ -18,7 +18,7 @@ android {
1818

1919
dependencies {
2020
compile project(':library')
21-
compile 'com.android.support:appcompat-v7:23.3.0'
22-
compile 'com.android.support:recyclerview-v7:23.3.0'
21+
compile 'com.android.support:appcompat-v7:24.1.1'
22+
compile 'com.android.support:recyclerview-v7:24.1.1'
2323
compile 'com.squareup.picasso:picasso:2.5.2'
2424
}

0 commit comments

Comments
 (0)