Skip to content

Commit ffa4f18

Browse files
committed
[version] 2.4.7.
1 parent 77e1fae commit ffa4f18

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)
44
![](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)
5-
![](https://img.shields.io/badge/release-2.4.6-red.svg?style=flat)
5+
![](https://img.shields.io/badge/release-2.4.7-red.svg?style=flat)
66
![](https://img.shields.io/badge/Android-4.0%20--%2010-blue.svg?style=flat)
77
![](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)
88

@@ -62,7 +62,7 @@ xCrash has been used in many Android apps (including iQIYI video) on different p
6262

6363
```Gradle
6464
dependencies {
65-
implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.6'
65+
implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.7'
6666
}
6767
```
6868

README.zh-CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)
44
![](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)
5-
![](https://img.shields.io/badge/release-2.4.6-red.svg?style=flat)
5+
![](https://img.shields.io/badge/release-2.4.7-red.svg?style=flat)
66
![](https://img.shields.io/badge/Android-4.0%20--%2010-blue.svg?style=flat)
77
![](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)
88

@@ -62,7 +62,7 @@ xCrash 已经在 [爱奇艺](http://www.iqiyi.com/) 的不同平台(手机,
6262

6363
```Gradle
6464
dependencies {
65-
implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.6'
65+
implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.7'
6666
}
6767
```
6868

src/java/xcrash/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ext {
3030

3131
POM_GROUP_ID = "com.iqiyi.xcrash"
3232
POM_ARTIFACT_ID = "xcrash-android-lib"
33-
POM_VERSION_NAME = "2.4.6"
33+
POM_VERSION_NAME = "2.4.7"
3434

3535
POM_NAME = "xCrash Android Lib"
3636
POM_DESCRIPTION = "xCrash provides the Android app with the ability to capture java crash, native crash and ANR."

src/java/xcrash/xcrash_lib/src/main/java/xcrash/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ class Version {
2727
private Version() {
2828
}
2929

30-
static final String version = "2.4.6";
30+
static final String version = "2.4.7";
3131
static final String fullVersion = "xCrash " + version;
3232
}

src/java/xcrash/xcrash_sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ dependencies {
3333
implementation fileTree(dir: 'libs', include: ['*.jar'])
3434
implementation 'androidx.appcompat:appcompat:1.1.0'
3535
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
36-
//implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.6'
36+
//implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.7'
3737
implementation project(':xcrash_lib')
3838
}

src/native/common/xcc_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
#ifndef XCC_VERSION_H
2525
#define XCC_VERSION_H 1
2626

27-
#define XCC_VERSION_STR "xCrash 2.4.6"
27+
#define XCC_VERSION_STR "xCrash 2.4.7"
2828

2929
#endif

0 commit comments

Comments
 (0)