File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed
src/main/java/uk/co/ribot/androidboilerplate Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 79
79
}
80
80
81
81
dependencies {
82
- final PLAY_SERVICES_VERSION = ' 8.3 .0'
82
+ final PLAY_SERVICES_VERSION = ' 8.4 .0'
83
83
final SUPPORT_LIBRARY_VERSION = ' 23.1.1'
84
- final RETROFIT_VERSION = ' 2.0.0-beta2 '
84
+ final RETROFIT_VERSION = ' 2.0.0-beta3 '
85
85
final DAGGER_VERSION = ' 2.0.2'
86
86
final DEXMAKER_VERSION = ' 1.4'
87
87
final HAMCREST_VERSION = ' 1.3'
@@ -101,9 +101,9 @@ dependencies {
101
101
102
102
compile ' com.squareup.picasso:picasso:2.5.2'
103
103
compile ' com.squareup.sqlbrite:sqlbrite:0.5.0'
104
- compile " com.squareup.retrofit :retrofit:$RETROFIT_VERSION "
105
- compile " com.squareup.retrofit :converter-gson:$RETROFIT_VERSION "
106
- compile " com.squareup.retrofit :adapter-rxjava:$RETROFIT_VERSION "
104
+ compile " com.squareup.retrofit2 :retrofit:$RETROFIT_VERSION "
105
+ compile " com.squareup.retrofit2 :converter-gson:$RETROFIT_VERSION "
106
+ compile " com.squareup.retrofit2 :adapter-rxjava:$RETROFIT_VERSION "
107
107
compile ' com.squareup:otto:1.3.8'
108
108
109
109
compile ' io.reactivex:rxandroid:1.1.0'
Original file line number Diff line number Diff line change 5
5
6
6
import java .util .List ;
7
7
8
- import retrofit .GsonConverterFactory ;
9
- import retrofit .Retrofit ;
10
- import retrofit .RxJavaCallAdapterFactory ;
11
- import retrofit .http .GET ;
8
+ import retrofit2 .GsonConverterFactory ;
9
+ import retrofit2 .Retrofit ;
10
+ import retrofit2 .RxJavaCallAdapterFactory ;
11
+ import retrofit2 .http .GET ;
12
12
import rx .Observable ;
13
13
import uk .co .ribot .androidboilerplate .data .model .Ribot ;
14
14
Original file line number Diff line number Diff line change 4
4
import android .net .ConnectivityManager ;
5
5
import android .net .NetworkInfo ;
6
6
7
- import retrofit .HttpException ;
7
+ import retrofit2 .HttpException ;
8
8
9
9
public class NetworkUtil {
10
10
You can’t perform that action at this time.
0 commit comments