diff --git a/README-CN.md b/README-CN.md index 189c5c9ce084e4fffb656e4b0ef38ca992234fc7..3d67a412cf78fef41ffaef86885114f483769db1 100644 --- a/README-CN.md +++ b/README-CN.md @@ -41,7 +41,7 @@ [logo]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/logo.png -[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.13.15-brightgreen.svg +[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.13.16-brightgreen.svg [auc]: https://github.com/Blankj/AndroidUtilCode [apisvg]: https://img.shields.io/badge/API-14+-brightgreen.svg diff --git a/README.md b/README.md index 399c0220e92c001c7cdc1e100e66b846379e77de..e1c5ecc453fe6c96f22aba47b8fe35c76659ea72 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ If this project helps you a lot and you want to support the project's developmen [logo]: https://raw.githubusercontent.com/Blankj/AndroidUtilCode/master/art/logo.png -[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.13.15-brightgreen.svg +[aucsvg]: https://img.shields.io/badge/AndroidUtilCode-v1.13.16-brightgreen.svg [auc]: https://github.com/Blankj/AndroidUtilCode [apisvg]: https://img.shields.io/badge/API-14+-brightgreen.svg diff --git a/build.gradle b/build.gradle index d34113feb6ac4f9286d6f0ddfb42271a12230f9b..04e9a19effaae2907e564684746aa2c7f68fa95c 100644 --- a/build.gradle +++ b/build.gradle @@ -33,8 +33,8 @@ ext { min_sdk_version = 14 target_sdk_version = 27 - version_code = 1_013_015 - version_name = '1.13.15'// E.g 1.9.72 => 1,009,072 + version_code = 1_013_016 + version_name = '1.13.16'// E.g 1.9.72 => 1,009,072 // App dependencies support_version = '27.1.0' diff --git a/update_log.md b/update_log.md index e0e07d151d9692680bf5bc0ad58017a83d3faf3f..3df53e2046391367c05afed855103c8fa9f3b70c 100644 --- a/update_log.md +++ b/update_log.md @@ -1,5 +1,5 @@ * 18/04/23 新增 RSA 加解密,发布 1.13.16 版本 -* 18/04/22 新增 LogUtils#,发布 1.13.15 版本 +* 18/04/22 新增 LogUtils 设置栈偏移 * 18/04/21 新增 AppUtils#relaunchApp、DeviceUtils#getABIs,发布 1.13.15 版本 * 18/04/20 新增 BarUtils#setNavBarColor、BarUtils#getNavBarColor * 18/04/19 新增 Process#isMainProcess、Process#getCurrentProcessName,发布 1.13.14 版本 diff --git a/utilcode/README-CN.md b/utilcode/README-CN.md index 7f64f4086bfd48b13562e53faf0f23f0418f9fca..f9eaf706228672954a174a92fcc9a5fac9a6ef2e 100644 --- a/utilcode/README-CN.md +++ b/utilcode/README-CN.md @@ -2,7 +2,7 @@ Gradle: ```groovy -implementation 'com.blankj:utilcode:1.13.15' +implementation 'com.blankj:utilcode:1.13.16' ``` diff --git a/utilcode/README.md b/utilcode/README.md index d4c14ae8bf4140c17098431ead24f60674bed07e..ef8ef9d85e46ee8ebf1ba5372e18f98f8ac04f98 100644 --- a/utilcode/README.md +++ b/utilcode/README.md @@ -2,7 +2,7 @@ Gradle: ```groovy -implementation 'com.blankj:utilcode:1.13.15' +implementation 'com.blankj:utilcode:1.13.16' ``` @@ -202,6 +202,8 @@ encrypt3DES, encrypt3DES2HexString, encrypt3DES2Base64 decrypt3DES, decryptHexString3DES, decryptBase64_3DES encryptAES, encryptAES2HexString, encryptAES2Base64 decryptAES, decryptHexStringAES, decryptBase64AES +encryptRSA, encryptRSA2HexString, encryptRSA2Base64 +decryptRSA, decryptHexStringRSA, decryptBase64RSA ``` * ### About FileIO -> [FileIOUtils.java][fileio.java] -> [Test][fileio.test]