File tree Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,14 @@ Packaging: JAR or AAR
58
58
```
59
59
Gradle
60
60
``` groovy
61
- compile 'com.loopj.android:android-async-http:1.4.8'
61
+ repositories {
62
+ maven {
63
+ mavenCentral()
64
+ }
65
+ }
66
+ dependencies {
67
+ compile 'com.loopj.android:android-async-http:1.4.8'
68
+ }
62
69
```
63
70
64
71
** development snapshots**
@@ -71,9 +78,16 @@ ArtifactId: android-async-http
71
78
Version: 1.4.9-SNAPSHOT
72
79
Packaging: JAR or AAR
73
80
```
74
- Gradle`
81
+ Gradle
75
82
``` groovy
76
- compile 'com.loopj.android:android-async-http:1.4.9-SNAPSHOT'
83
+ repositories {
84
+ maven {
85
+ url 'https://oss.sonatype.org/content/repositories/snapshots/'
86
+ }
87
+ }
88
+ dependencies {
89
+ compile 'com.loopj.android:android-async-http:1.4.9-SNAPSHOT'
90
+ }
77
91
```
78
92
79
93
Documentation, Features and Examples
You can’t perform that action at this time.
0 commit comments