Skip to content

Commit

Permalink
[version] 2.4.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
caikelun committed Nov 15, 2019
1 parent 04a642b commit e2773d3
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7-red.svg?style=flat)
![](https://img.shields.io/badge/release-2.4.8-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)

Expand All @@ -22,7 +22,7 @@ xCrash has been used in many Android apps (including iQIYI video) on different p
* Support Android 4.0 - 10 (API level 14 - 29).
* Support armeabi, armeabi-v7a, arm64-v8a, x86 and x86_64.
* Capturing java crash, native crash and ANR.
* Dumping detailed memory usage statistics.
* Dumping detailed statistics about process, threads, memory, FD and network.
* Setting which thread's info should be dumped via regular expressions.
* Do not require root permission or any system permissions.

Expand Down Expand Up @@ -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.7'
implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.8'
}
```

Expand Down
6 changes: 3 additions & 3 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7-red.svg?style=flat)
![](https://img.shields.io/badge/release-2.4.8-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)

Expand All @@ -22,7 +22,7 @@ xCrash 已经在 [爱奇艺](http://www.iqiyi.com/) 的不同平台(手机,
* 支持 Android 4.0 - 10(API level 14 - 29)。
* 支持 armeabi,armeabi-v7a,arm64-v8a,x86 和 x86_64。
* 捕获 java 崩溃,native 崩溃和 ANR。
* 获取详细的内存使用统计信息
* 获取详细的进程、线程、内存、FD、网络统计信息
* 通过正则表达式设置需要获取哪些线程的信息。
* 不需要 root 权限或任何系统权限。

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

```Gradle
dependencies {
implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.7'
implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.8'
}
```

Expand Down
2 changes: 1 addition & 1 deletion src/java/xcrash/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ext {

POM_GROUP_ID = "com.iqiyi.xcrash"
POM_ARTIFACT_ID = "xcrash-android-lib"
POM_VERSION_NAME = "2.4.7"
POM_VERSION_NAME = "2.4.8"

POM_NAME = "xCrash Android Lib"
POM_DESCRIPTION = "xCrash provides the Android app with the ability to capture java crash, native crash and ANR."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ class Version {
private Version() {
}

static final String version = "2.4.7";
static final String version = "2.4.8";
static final String fullVersion = "xCrash " + version;
}
2 changes: 1 addition & 1 deletion src/java/xcrash/xcrash_sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.7'
//implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.8'
implementation project(':xcrash_lib')
}
2 changes: 1 addition & 1 deletion src/native/common/xcc_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
#ifndef XCC_VERSION_H
#define XCC_VERSION_H 1

#define XCC_VERSION_STR "xCrash 2.4.7"
#define XCC_VERSION_STR "xCrash 2.4.8"

#endif

0 comments on commit e2773d3

Please sign in to comment.