diff --git a/README.md b/README.md index 73e84fa..211e598 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat) ![](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat) -![](https://img.shields.io/badge/release-2.4.6-red.svg?style=flat) +![](https://img.shields.io/badge/release-2.4.7-red.svg?style=flat) ![](https://img.shields.io/badge/Android-4.0%20--%2010-blue.svg?style=flat) ![](https://img.shields.io/badge/arch-armeabi%20%7C%20armeabi--v7a%20%7C%20arm64--v8a%20%7C%20x86%20%7C%20x86__64-blue.svg?style=flat) @@ -62,7 +62,7 @@ xCrash has been used in many Android apps (including iQIYI video) on different p ```Gradle dependencies { - implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.6' + implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.7' } ``` diff --git a/README.zh-CN.md b/README.zh-CN.md index f7bb4fd..434f1ac 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -2,7 +2,7 @@ ![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat) ![](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat) -![](https://img.shields.io/badge/release-2.4.6-red.svg?style=flat) +![](https://img.shields.io/badge/release-2.4.7-red.svg?style=flat) ![](https://img.shields.io/badge/Android-4.0%20--%2010-blue.svg?style=flat) ![](https://img.shields.io/badge/arch-armeabi%20%7C%20armeabi--v7a%20%7C%20arm64--v8a%20%7C%20x86%20%7C%20x86__64-blue.svg?style=flat) @@ -62,7 +62,7 @@ xCrash 已经在 [爱奇艺](http://www.iqiyi.com/) 的不同平台(手机, ```Gradle dependencies { - implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.6' + implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.7' } ``` diff --git a/src/java/xcrash/build.gradle b/src/java/xcrash/build.gradle index 74d6143..5f5777f 100644 --- a/src/java/xcrash/build.gradle +++ b/src/java/xcrash/build.gradle @@ -30,7 +30,7 @@ ext { POM_GROUP_ID = "com.iqiyi.xcrash" POM_ARTIFACT_ID = "xcrash-android-lib" - POM_VERSION_NAME = "2.4.6" + POM_VERSION_NAME = "2.4.7" POM_NAME = "xCrash Android Lib" POM_DESCRIPTION = "xCrash provides the Android app with the ability to capture java crash, native crash and ANR." diff --git a/src/java/xcrash/xcrash_lib/src/main/java/xcrash/Version.java b/src/java/xcrash/xcrash_lib/src/main/java/xcrash/Version.java index d861de1..f7816ca 100644 --- a/src/java/xcrash/xcrash_lib/src/main/java/xcrash/Version.java +++ b/src/java/xcrash/xcrash_lib/src/main/java/xcrash/Version.java @@ -27,6 +27,6 @@ class Version { private Version() { } - static final String version = "2.4.6"; + static final String version = "2.4.7"; static final String fullVersion = "xCrash " + version; } diff --git a/src/java/xcrash/xcrash_sample/build.gradle b/src/java/xcrash/xcrash_sample/build.gradle index 839e8ba..975cf32 100644 --- a/src/java/xcrash/xcrash_sample/build.gradle +++ b/src/java/xcrash/xcrash_sample/build.gradle @@ -33,6 +33,6 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' - //implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.6' + //implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.7' implementation project(':xcrash_lib') } diff --git a/src/native/common/xcc_version.h b/src/native/common/xcc_version.h index 07037e6..b6dc38b 100644 --- a/src/native/common/xcc_version.h +++ b/src/native/common/xcc_version.h @@ -24,6 +24,6 @@ #ifndef XCC_VERSION_H #define XCC_VERSION_H 1 -#define XCC_VERSION_STR "xCrash 2.4.6" +#define XCC_VERSION_STR "xCrash 2.4.7" #endif