Skip to content

Commit

Permalink
see 12/14 log
Browse files Browse the repository at this point in the history
  • Loading branch information
Blankj committed Dec 14, 2017
1 parent 996163e commit 43bd66d
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

[logo]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/logo.png

[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.9.11-brightgreen.svg
[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.9.12-brightgreen.svg
[auc]: https://github.com/Blankj/AndroidUtilCode

[apisvg]: https://img.shields.io/badge/API-14+-brightgreen.svg
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ If this ptoject helps you a lot, and you would like to support this ptoject's fu

[logo]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/logo.png

[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.9.11-brightgreen.svg
[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.9.12-brightgreen.svg
[auc]: https://github.com/Blankj/AndroidUtilCode

[apisvg]: https://img.shields.io/badge/API-14+-brightgreen.svg
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<solid android:color="@color/colorAccent" />
<size
android:width="100dp"
android:width="@dimen/block_width"
android:height="@dimen/block_high_height" />
<stroke
android:width="5dp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<solid android:color="@color/colorAccent" />
<size
android:width="@dimen/block_low_width"
android:width="@dimen/block_width"
android:height="@dimen/block_low_height" />
<stroke
android:width="1dp"
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ ext {
min_sdk_version = 14
target_sdk_version = 22

version_code = 1009011
version_name = '1.9.11'// E.g 1.9.72 == 1,009,072
version_code = 1009012
version_name = '1.9.12'// E.g 1.9.72 == 1,009,072

// App dependencies
support_version = '26.1.0'
Expand Down
4 changes: 3 additions & 1 deletion update_log.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
* 17/12/11 完善 ActivityUtils 的 finish 系列,发布1.9.11
* 17/12/14 更新手机号(精确)正则,发布 1.9.12
* 17/12/12 完善 LogUtils,当最终日志长度为 0 时,输出 log nothing
* 17/12/11 完善 ActivityUtils 的 finish 系列,发布 1.9.11
* 17/12/04 LogUtils 边框改为单线清爽型
* 17/11/30 修复 ToastUtils 背景问题,发布 1.9.10
* 17/11/30 修复 ToastUtils 获取背景为空,发布 1.9.9
Expand Down
2 changes: 1 addition & 1 deletion utilcode/README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gradle:
```groovy
compile 'com.blankj:utilcode:1.9.11'
compile 'com.blankj:utilcode:1.9.12'
```


Expand Down
2 changes: 1 addition & 1 deletion utilcode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gradle:
```groovy
compile 'com.blankj:utilcode:1.9.11'
compile 'com.blankj:utilcode:1.9.12'
```


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ public final class RegexConstants {
public static final String REGEX_MOBILE_SIMPLE = "^[1]\\d{10}$";
/**
* 正则:手机号(精确)
* <p>移动:134(0-8)、135、136、137、138、139、147、150、151、152、157、158、159、178、182、183、184、187、188</p>
* <p>联通:130、131、132、145、155、156、171、175、176、185、186</p>
* <p>电信:133、153、173、177、180、181、189</p>
* <p>移动:134(0-8)、135、136、137、138、139、147、150、151、152、157、158、159、178、182、183、184、187、188、198</p>
* <p>联通:130、131、132、145、155、156、166、171、175、176、185、186</p>
* <p>电信:133、153、173、177、180、181、189、199</p>
* <p>全球星:1349</p>
* <p>虚拟运营商:170</p>
*/
public static final String REGEX_MOBILE_EXACT = "^((13[0-9])|(14[5,7])|(15[0-3,5-9])|(17[0,1,3,5-8])|(18[0-9])|(147))\\d{8}$";
public static final String REGEX_MOBILE_EXACT = "^((13[0-9])|(14[5,7])|(15[0-3,5-9])|(16[6])|(17[0,1,3,5-8])|(18[0-9])|(19[8,9]))\\d{8}$";
/**
* 正则:电话号码
*/
Expand Down

0 comments on commit 43bd66d

Please sign in to comment.