Skip to content

Commit

Permalink
[improve] Upgrade Android Gradle plugin from 3.5.2 to 3.5.3.
Browse files Browse the repository at this point in the history
[version] 2.4.9.
  • Loading branch information
caikelun committed Dec 19, 2019
1 parent 9ce3a1b commit 4748d18
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,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.8-red.svg?style=flat)
![](https://img.shields.io/badge/release-2.4.9-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 Down Expand Up @@ -64,7 +64,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.8'
implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.9'
}
```

Expand Down
4 changes: 2 additions & 2 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,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.8-red.svg?style=flat)
![](https://img.shields.io/badge/release-2.4.9-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 Down Expand Up @@ -64,7 +64,7 @@ xCrash 已经在 [爱奇艺](http://www.iqiyi.com/) 的不同平台(手机,

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

Expand Down
4 changes: 2 additions & 2 deletions src/java/xcrash/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.2'
classpath 'com.android.tools.build:gradle:3.5.3'
classpath 'digital.wup:android-maven-publish:3.6.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
}
Expand All @@ -30,7 +30,7 @@ ext {

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

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.8";
static final String version = "2.4.9";
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.8'
//implementation 'com.iqiyi.xcrash:xcrash-android-lib:2.4.9'
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.8"
#define XCC_VERSION_STR "xCrash 2.4.9"

#endif

0 comments on commit 4748d18

Please sign in to comment.