From e2773d34f133467e055539e86b555360401d867c Mon Sep 17 00:00:00 2001 From: CAI Kelun Date: Fri, 15 Nov 2019 16:14:01 +0800 Subject: [PATCH] [version] 2.4.8. --- README.md | 6 +++--- README.zh-CN.md | 6 +++--- src/java/xcrash/build.gradle | 2 +- .../xcrash/xcrash_lib/src/main/java/xcrash/Version.java | 2 +- src/java/xcrash/xcrash_sample/build.gradle | 2 +- src/native/common/xcc_version.h | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 211e598..6c46590 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.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) @@ -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. @@ -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' } ``` diff --git a/README.zh-CN.md b/README.zh-CN.md index 434f1ac..39fdd62 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.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) @@ -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 权限或任何系统权限。 @@ -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' } ``` diff --git a/src/java/xcrash/build.gradle b/src/java/xcrash/build.gradle index 5f5777f..f68141c 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.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." 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 f7816ca..eecdb0e 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.7"; + static final String version = "2.4.8"; 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 975cf32..35ba618 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.7' + //implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.8' implementation project(':xcrash_lib') } diff --git a/src/native/common/xcc_version.h b/src/native/common/xcc_version.h index b6dc38b..9127531 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.7" +#define XCC_VERSION_STR "xCrash 2.4.8" #endif