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") }
60
60
61
61
Add this in your ` build.gradle `
62
62
``` 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 '
64
64
```
65
65
66
66
If you are using ` build.gradle.kts ` , add the following:
67
67
``` 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 " )
69
69
```
70
70
71
71
Do not forget to add internet permission in manifest if already not present
@@ -89,12 +89,12 @@ Using the Fast Android Networking with Jackson Parser
89
89
90
90
Add this in your ` build.gradle `
91
91
``` 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 '
93
93
```
94
94
95
95
If you are using ` build.gradle.kts ` , add the following:
96
96
``` 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 " )
98
98
```
99
99
100
100
``` java
Original file line number Diff line number Diff line change @@ -40,11 +40,10 @@ android {
40
40
}
41
41
42
42
dependencies {
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 "
49
49
}
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 {
37
37
}
38
38
39
39
dependencies {
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' )
44
44
}
Original file line number Diff line number Diff line change @@ -23,9 +23,7 @@ buildscript {
23
23
google()
24
24
}
25
25
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'
29
27
// NOTE: Do not place your application dependencies here; they belong
30
28
// in the individual module build.gradle files
31
29
}
Original file line number Diff line number Diff line change 1
- # Thu Apr 12 21:48:48 IST 2018
2
1
distributionBase =GRADLE_USER_HOME
3
2
distributionPath =wrapper/dists
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.2-bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =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 {
50
50
}
51
51
52
52
dependencies {
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' )
58
58
}
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 {
36
36
}
37
37
38
38
dependencies {
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' )
44
44
}
45
- // apply from: 'rx-upload.gradle'
You can’t perform that action at this time.
0 commit comments