Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ apply plugin: "com.jfrog.bintray"
version = "1.0.7"

android {
compileSdkVersion 25
buildToolsVersion '25.0.3'
// compileSdkVersion 25
// buildToolsVersion '25.0.3'

compileSdkVersion 24
buildToolsVersion '24'

defaultConfig {
minSdkVersion 14
targetSdkVersion 25
// targetSdkVersion 25
targetSdkVersion 24
versionCode 3
versionName version

Expand All @@ -37,9 +41,13 @@ dependencies {
compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
compile 'io.reactivex.rxjava2:rxjava:2.1.0'
compile 'com.yalantis:ucrop:2.2.0'
compile 'com.android.support:recyclerview-v7:25.3.1'
/* compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.android.support:appcompat-v7:25.3.1'
compile "com.android.support:exifinterface:25.3.1"
compile "com.android.support:exifinterface:25.3.1"*/
compile 'com.android.support:recyclerview-v7:24.2.0'
compile 'com.android.support:appcompat-v7:24.2.0'
compile "com.android.support:exifinterface:25.1.0"

provided 'com.squareup.picasso:picasso:2.5.2'
provided 'com.facebook.fresco:fresco:1.3.0'
provided 'com.facebook.fresco:animated-gif:1.3.0'
Expand Down
7 changes: 4 additions & 3 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ apply plugin: 'com.getkeepsafe.dexcount'

android {
compileSdkVersion 24
buildToolsVersion '25.0.3'

// buildToolsVersion '25.0.3'
buildToolsVersion '24'

defaultConfig {
applicationId "cn.finalteam.rxgalleryfinal.sample"
minSdkVersion 14
targetSdkVersion 25
// targetSdkVersion 25
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
Expand Down