File tree Expand file tree Collapse file tree 7 files changed +13
-23
lines changed
java/com/loopj/android/http Expand file tree Collapse file tree 7 files changed +13
-23
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ https://oss.sonatype.org/content/repositories/snapshots/com/loopj/android/androi
29
29
Maven URL: https://oss.sonatype.org/content/repositories/snapshots/
30
30
GroupId: com.loopj.android
31
31
ArtifactId: async-http-client
32
- Version: 1.4.5 -SNAPSHOT
32
+ Version: 2.0.0 -SNAPSHOT
33
33
Packaging: JAR or AAR
34
34
```
35
35
Original file line number Diff line number Diff line change @@ -14,10 +14,13 @@ def isReleaseBuild() {
14
14
15
15
allprojects {
16
16
group = ' com.loopj.android'
17
- version = ' 1.4.5 -SNAPSHOT'
17
+ version = ' 2.0.0 -SNAPSHOT'
18
18
19
19
repositories {
20
20
mavenCentral()
21
+ maven {
22
+ url " https://oss.sonatype.org/content/repositories/snapshots/"
23
+ }
21
24
}
22
25
23
26
tasks. withType(JavaCompile ) {
Original file line number Diff line number Diff line change 1
- VERSION_NAME =1.4.5 -SNAPSHOT
2
- VERSION_CODE =145
1
+ VERSION_NAME =2.0.0 -SNAPSHOT
2
+ VERSION_CODE =200
3
3
GROUP =com.loopj.android
4
4
5
5
POM_DESCRIPTION =An Asynchronous HTTP Library for Android
Original file line number Diff line number Diff line change @@ -2,21 +2,15 @@ apply plugin: 'android-library'
2
2
3
3
android {
4
4
compileSdkVersion 19
5
- buildToolsVersion ' 19.0.0 '
5
+ buildToolsVersion ' 19.0.1 '
6
6
7
7
lintOptions {
8
8
abortOnError false
9
9
}
10
10
}
11
11
12
- repositories {
13
- maven {
14
- url " https://oss.sonatype.org/content/repositories/snapshots/"
15
- }
16
- }
17
-
18
12
dependencies {
19
- compile ' com.squareup.okhttp:okhttp:1.3 -SNAPSHOT'
13
+ compile ' com.squareup.okhttp:okhttp:1.2.2 -SNAPSHOT'
20
14
}
21
15
22
16
android. libraryVariants. all { variant ->
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
3
package =" com.loopj.android.http"
4
- android : versionName =" 1.4.5 -SNAPSHOT"
5
- android : versionCode =" 145 " >
4
+ android : versionName =" 2.0.0 -SNAPSHOT"
5
+ android : versionCode =" 200 " >
6
6
7
7
<uses-sdk
8
8
android : minSdkVersion =" 3" />
Original file line number Diff line number Diff line change 92
92
*/
93
93
public class AsyncHttpClient {
94
94
95
- public static final String VERSION = "1.4.5 " ;
95
+ public static final String VERSION = "2.0.0 " ;
96
96
public static final int DEFAULT_MAX_CONNECTIONS = 10 ;
97
97
public static final int DEFAULT_SOCKET_TIMEOUT = 10 * 1000 ;
98
98
public static final int DEFAULT_MAX_RETRIES = 5 ;
Original file line number Diff line number Diff line change @@ -8,16 +8,9 @@ buildscript {
8
8
}
9
9
apply plugin : ' android'
10
10
11
- repositories {
12
- mavenCentral()
13
- maven {
14
- url " https://oss.sonatype.org/content/repositories/snapshots/"
15
- }
16
- }
17
-
18
11
android {
19
12
compileSdkVersion 19
20
- buildToolsVersion ' 19.0.0 '
13
+ buildToolsVersion ' 19.0.1 '
21
14
22
15
defaultConfig {
23
16
minSdkVersion 3
You can’t perform that action at this time.
0 commit comments