Skip to content

Commit 0edc62e

Browse files
committed
see 08/09 log
1 parent 352054a commit 0edc62e

File tree

15 files changed

+15
-59
lines changed

15 files changed

+15
-59
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
* `19/08/09` [fix] https://www.virustotal.com/gui/home/upload with ESET-NOD32. Publish v1.25.7.
12
* `19/08/08` [add] BusUtils#post tag support one-to-many. Publish v1.25.6.
23
* `19/08/04` [add] ThreadUtils#Task support timeout.
34
* `19/08/01` [upd] EncryptUtils#rsa.

README-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
[frame]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/auc_frame_cn.png
5353

54-
[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.25.6-brightgreen.svg
54+
[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.25.7-brightgreen.svg
5555
[auc]: https://github.com/Blankj/AndroidUtilCode
5656

5757
[apiSvg]: https://img.shields.io/badge/API-14+-brightgreen.svg

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ If this project helps you a lot and you want to support the project's developmen
5151

5252
[frame]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/auc_frame.png
5353

54-
[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.25.6-brightgreen.svg
54+
[aucSvg]: https://img.shields.io/badge/AndroidUtilCode-v1.25.7-brightgreen.svg
5555
[auc]: https://github.com/Blankj/AndroidUtilCode
5656

5757
[apiSvg]: https://img.shields.io/badge/API-14+-brightgreen.svg

buildSrc/src/main/groovy/Config.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ class Config {
1414
static compileSdkVersion = 28
1515
static minSdkVersion = 14
1616
static targetSdkVersion = 28
17-
static versionCode = 1_025_006
18-
static versionName = '1.25.6'// E.g. 1.9.72 => 1,009,072
17+
static versionCode = 1_025_007
18+
static versionName = '1.25.7'// E.g. 1.9.72 => 1,009,072
1919

2020
// lib version
2121
static kotlin_version = '1.3.10'

feature/subutil/app/src/main/java/com/blankj/subutil/app/SubUtilApp.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.blankj.subutil.app
22

33
import android.content.Context
4-
import com.blankj.lib.common.CommonApplication
4+
import com.blankj.common.CommonApplication
55

66

77
/**
Binary file not shown.

feature/subutil/pkg/src/main/java/com/blankj/subutil/pkg/Config.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ object Config {
2626
} else {
2727
Environment.getExternalStorageDirectory().absolutePath
2828
} + FILE_SEP
29-
TEST_APK_PATH = CACHE_PATH + "test_install_silent.apk"
29+
TEST_APK_PATH = CACHE_PATH + "test_install.apk"
3030
}
3131
}

feature/subutil/pkg/src/main/java/com/blankj/subutil/pkg/feature/dangerous/DangerousActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ class DangerousActivity : CommonTitleActivity() {
121121
class ReleaseInstallApkTask(private val mListener: OnReleasedListener) : ThreadUtils.SimpleTask<Unit>() {
122122

123123
override fun doInBackground() {
124-
ResourceUtils.copyFileFromAssets("test_install_silent", Config.TEST_APK_PATH)
124+
ResourceUtils.copyFileFromAssets("test_install", Config.TEST_APK_PATH)
125125
}
126126

127127
override fun onSuccess(result: Unit) {

feature/utilcode/app/src/main/java/com/blankj/utilcode/app/UtilCodeApp.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.blankj.utilcode.app
22

3-
import com.blankj.lib.common.CommonApplication
3+
import com.blankj.common.CommonApplication
44
import com.blankj.utilcode.util.Utils
55

66

feature/utilcode/pkg/src/main/java/com/blankj/utilcode/pkg/feature/phone/PhoneActivity.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ class PhoneActivity : CommonTitleActivity() {
5858
.appendLine("isSimCardReady: " + PhoneUtils.isSimCardReady())
5959
.appendLine("getSimOperatorName: " + PhoneUtils.getSimOperatorName())
6060
.appendLine("getSimOperatorByMnc: " + PhoneUtils.getSimOperatorByMnc())
61-
.append("getPhoneStatus: " + PhoneUtils.getPhoneStatus())
6261
.create()
6362

6463
applyDebouncingClickListener(

0 commit comments

Comments
 (0)