File tree Expand file tree Collapse file tree 14 files changed +42
-458
lines changed
jackson-android-networking Expand file tree Collapse file tree 14 files changed +42
-458
lines changed Original file line number Diff line number Diff line change @@ -60,12 +60,12 @@ maven { setUrl("https://jitpack.io") }
6060
6161Add this in your ` build.gradle `
6262``` groovy
63- implementation 'com.github.amitshekhariitbhu.Fast-Android-Networking:android-networking:1.0.3 '
63+ implementation 'com.github.amitshekhariitbhu.Fast-Android-Networking:android-networking:1.0.4 '
6464```
6565
6666If you are using ` build.gradle.kts ` , add the following:
6767``` kotlin
68- implementation(" com.github.amitshekhariitbhu.Fast-Android-Networking:android-networking:1.0.3 " )
68+ implementation(" com.github.amitshekhariitbhu.Fast-Android-Networking:android-networking:1.0.4 " )
6969```
7070
7171Do not forget to add internet permission in manifest if already not present
@@ -89,12 +89,12 @@ Using the Fast Android Networking with Jackson Parser
8989
9090Add this in your ` build.gradle `
9191``` groovy
92- implementation 'com.github.amitshekhariitbhu.Fast-Android-Networking:jackson-android-networking:1.0.3 '
92+ implementation 'com.github.amitshekhariitbhu.Fast-Android-Networking:jackson-android-networking:1.0.4 '
9393```
9494
9595If you are using ` build.gradle.kts ` , add the following:
9696``` kotlin
97- implementation(" com.github.amitshekhariitbhu.Fast-Android-Networking:jackson-android-networking:1.0.3 " )
97+ implementation(" com.github.amitshekhariitbhu.Fast-Android-Networking:jackson-android-networking:1.0.4 " )
9898```
9999
100100``` java
Original file line number Diff line number Diff line change @@ -40,11 +40,10 @@ android {
4040}
4141
4242dependencies {
43- compile fileTree(dir : ' libs' , include : [' *.jar' ])
44- testCompile " junit:junit:$rootProject . ext . jUnitVersion "
45- androidTestCompile " com.squareup.okhttp3:mockwebserver:$rootProject . ext . mockWebServerVersion "
46- compile " com.squareup.okhttp3:okhttp:$rootProject . ext . okHttp3Version "
47- compile " com.google.code.gson:gson:$rootProject . ext . gsonVersion "
48- compile " com.android.support:appcompat-v7:$rootProject . ext . supportAppCompatVersion "
43+ api fileTree(dir : ' libs' , include : [' *.jar' ])
44+ testImplementation " junit:junit:$rootProject . ext . jUnitVersion "
45+ androidTestImplementation " com.squareup.okhttp3:mockwebserver:$rootProject . ext . mockWebServerVersion "
46+ api " com.squareup.okhttp3:okhttp:$rootProject . ext . okHttp3Version "
47+ api " com.google.code.gson:gson:$rootProject . ext . gsonVersion "
48+ implementation " com.android.support:appcompat-v7:$rootProject . ext . supportAppCompatVersion "
4949}
50- // apply from: 'upload.gradle'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -37,8 +37,8 @@ android {
3737}
3838
3939dependencies {
40- compile fileTree(dir : ' libs' , include : [' *.jar' ])
41- testCompile " junit:junit:$rootProject . ext . jUnitVersion "
42- compile " com.android.support:appcompat-v7:$rootProject . ext . supportAppCompatVersion "
43- compile project(' :android-networking' )
40+ implementation fileTree(dir : ' libs' , include : [' *.jar' ])
41+ testImplementation " junit:junit:$rootProject . ext . jUnitVersion "
42+ implementation " com.android.support:appcompat-v7:$rootProject . ext . supportAppCompatVersion "
43+ implementation project(' :android-networking' )
4444}
Original file line number Diff line number Diff line change @@ -23,9 +23,7 @@ buildscript {
2323 google()
2424 }
2525 dependencies {
26- classpath ' com.android.tools.build:gradle:3.1.0'
27- classpath ' com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
28- classpath ' com.github.dcendents:android-maven-gradle-plugin:1.4.1'
26+ classpath ' com.android.tools.build:gradle:7.0.4'
2927 // NOTE: Do not place your application dependencies here; they belong
3028 // in the individual module build.gradle files
3129 }
Original file line number Diff line number Diff line change 1- # Thu Apr 12 21:48:48 IST 2018
21distributionBase =GRADLE_USER_HOME
32distributionPath =wrapper/dists
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.2-bin.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl =https\://services.gradle.org/distributions/gradle-4.4-all.zip
Original file line number Diff line number Diff line change @@ -50,11 +50,9 @@ android {
5050}
5151
5252dependencies {
53- compile fileTree(dir : ' libs' , include : [' *.jar' ])
54- testCompile " junit:junit:$rootProject . ext . jUnitVersion "
55- androidTestCompile " com.squareup.okhttp3:mockwebserver:$rootProject . ext . mockWebServerVersion "
56- compile " com.fasterxml.jackson.core:jackson-databind:$rootProject . ext . jacksonVersion "
57- compile project(' :android-networking' )
53+ api fileTree(dir : ' libs' , include : [' *.jar' ])
54+ testImplementation " junit:junit:$rootProject . ext . jUnitVersion "
55+ androidTestImplementation " com.squareup.okhttp3:mockwebserver:$rootProject . ext . mockWebServerVersion "
56+ api " com.fasterxml.jackson.core:jackson-databind:$rootProject . ext . jacksonVersion "
57+ api project(' :android-networking' )
5858}
59-
60- // apply from: 'jackson-upload.gradle'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -36,10 +36,9 @@ android {
3636}
3737
3838dependencies {
39- compile fileTree(dir : ' libs' , include : [' *.jar' ])
40- testCompile " junit:junit:$rootProject . ext . jUnitVersion "
41- compile " io.reactivex:rxandroid:$rootProject . ext . rxJavaAndroidVersion "
42- compile " io.reactivex:rxjava:$rootProject . ext . rxJavaVersion "
43- compile project(' :android-networking' )
39+ api fileTree(dir : ' libs' , include : [' *.jar' ])
40+ testImplementation " junit:junit:$rootProject . ext . jUnitVersion "
41+ api " io.reactivex:rxandroid:$rootProject . ext . rxJavaAndroidVersion "
42+ api " io.reactivex:rxjava:$rootProject . ext . rxJavaVersion "
43+ api project(' :android-networking' )
4444}
45- // apply from: 'rx-upload.gradle'
You can’t perform that action at this time.
0 commit comments