File tree Expand file tree Collapse file tree
src/main/java/com/miguelbcr/ui/rx_paparazzo2/interactors Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ buildscript {
1313}
1414
1515android {
16- compileSdkVersion 24
17- buildToolsVersion " 24 .0.1 "
16+ compileSdkVersion 25
17+ buildToolsVersion " 25 .0.2 "
1818
1919 defaultConfig {
2020 applicationId " com.miguelbcr.ui.rx_paparazzo2.sample"
2121 minSdkVersion 16
22- targetSdkVersion 24
22+ targetSdkVersion 25
2323 versionCode 1
2424 versionName " 1.0"
2525 testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
@@ -42,8 +42,8 @@ android {
4242dependencies {
4343 compile fileTree(include : [' *.jar' ], dir : ' libs' )
4444 testCompile ' junit:junit:4.12'
45- compile ' com.android.support:appcompat-v7:24.2.1 '
46- compile ' com.android.support:design:24.2.1 '
45+ compile ' com.android.support:appcompat-v7:25.1.0 '
46+ compile ' com.android.support:design:25.1.0 '
4747 compile ' io.reactivex.rxjava2:rxandroid:2.0.1'
4848 compile ' com.squareup.picasso:picasso:2.5.2'
4949 compile project(' :rx_paparazzo' )
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ buildscript {
55 jcenter()
66 }
77 dependencies {
8- classpath ' com.android.tools.build:gradle:2.2.2 '
8+ classpath ' com.android.tools.build:gradle:2.2.3 '
99 classpath ' com.github.dcendents:android-maven-gradle-plugin:1.4.1'
1010 // NOTE: Do not place your application dependencies here; they belong
1111 // in the individual module build.gradle files
Original file line number Diff line number Diff line change @@ -14,12 +14,12 @@ buildscript {
1414}
1515
1616android {
17- compileSdkVersion 24
18- buildToolsVersion " 24 .0.1 "
17+ compileSdkVersion 25
18+ buildToolsVersion " 25 .0.2 "
1919
2020 defaultConfig {
2121 minSdkVersion 16
22- targetSdkVersion 24
22+ targetSdkVersion 25
2323 versionCode 1
2424 versionName " 1.0"
2525 }
@@ -36,9 +36,9 @@ android {
3636
3737dependencies {
3838 compile fileTree(dir : ' libs' , include : [' *.jar' ])
39- compile " io.reactivex.rxjava2:rxjava:2.0.1 "
39+ compile " io.reactivex.rxjava2:rxjava:2.0.2 "
4040 compile " com.github.VictorAlbertos:RxActivityResult:0.4.0-2.x"
41- compile ' com.tbruyelle.rxpermissions2:rxpermissions:0.8.2 @aar'
41+ compile ' com.tbruyelle.rxpermissions2:rxpermissions:0.9.1 @aar'
4242 compile ' com.yalantis:ucrop:2.2.0'
4343
4444 testCompile ' junit:junit:4.12'
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public GrantPermissions with(String... permissions) {
4848 return Observable .just (Ignore .Get );
4949 }
5050
51- return RxPermissions . getInstance (targetUi .activity ())
51+ return new RxPermissions (targetUi .activity ())
5252 .requestEach (permissions )
5353 .buffer (permissions .length )
5454 .flatMapIterable (new Function <List <Permission >, Iterable <Permission >>() {
You can’t perform that action at this time.
0 commit comments