Skip to content

Commit f1b8604

Browse files
committed
release 3.8.6
1 parent 27f99a6 commit f1b8604

File tree

7 files changed

+26
-6
lines changed

7 files changed

+26
-6
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ out/
1818
gradle/
1919
build/
2020
gradlew*
21-
gradle.properties
21+
# gradle.properties
2222

2323
# Local configuration file (sdk path, etc)
2424
local.properties

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ xUtils 包含了orm, http(s), image, view注解, 但依然很轻量级(251K),
2626

2727
#### 使用Gradle构建时添加以下依赖即可:
2828
```javascript
29-
implementation 'org.xutils:xutils:3.8.5'
29+
implementation 'org.xutils:xutils:3.8.6'
3030
```
3131

3232
#### 混淆配置参考示例项目sample的配置

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
jcenter()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.5.0'
9+
classpath 'com.android.tools.build:gradle:3.6.1'
1010
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
1111
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
1212

gradle.properties

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Project-wide Gradle settings.
2+
# IDE (e.g. Android Studio) users:
3+
# Gradle settings configured through the IDE *will override*
4+
# any settings specified in this file.
5+
# For more details on how to configure your build environment visit
6+
# http://www.gradle.org/docs/current/userguide/build_environment.html
7+
# Specifies the JVM arguments used for the daemon process.
8+
# The setting is particularly useful for tweaking memory settings.
9+
org.gradle.jvmargs=-Xmx1536m
10+
# When configured, Gradle will run in incubating parallel mode.
11+
# This option should only be used with decoupled projects. More details, visit
12+
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
13+
# org.gradle.parallel=true
14+
# AndroidX package structure to make it clearer which packages are bundled with the
15+
# Android operating system, and which are packaged with your app's APK
16+
# https://developer.android.com/topic/libraries/support-library/androidx-rn
17+
android.useAndroidX=true
18+
# Automatically convert third-party libraries to use AndroidX
19+
android.enableJetifier=true
20+

sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ android {
3232

3333
dependencies {
3434
implementation fileTree(include: ['*.jar'], dir: 'libs')
35-
implementation 'androidx.appcompat:appcompat:1.0.2'
35+
implementation 'androidx.appcompat:appcompat:1.1.0'
3636
implementation project(':xutils')
3737
}

sample/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
<string name="remove">移除</string>
66
<string name="stop">停止</string>
77
<string name="start">开始下载</string>
8-
<string name="test_download_url">http://dl.bintray.com/wyouflf/maven/org/xutils/xutils/3.8.5/xutils-3.8.5.aar</string>
8+
<string name="test_download_url">http://dl.bintray.com/wyouflf/maven/org/xutils/xutils/3.8.6/xutils-3.8.6.aar</string>
99
</resources>

xutils/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apply plugin: 'com.jfrog.bintray'
55
def siteUrl = 'https://github.com/wyouflf/xUtils3'
66
def gitUrl = 'https://github.com/wyouflf/xUtils3.git'
77
group = "org.xutils"
8-
version = "3.8.5"
8+
version = "3.8.6"
99

1010
android {
1111
compileSdkVersion 28

0 commit comments

Comments
 (0)