Skip to content

Commit

Permalink
修改版本号V1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maning0303 committed Oct 16, 2020
1 parent 02a4fef commit 57e43e7
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# MNCrashMonitor
MNCrashMonitor 监听程序崩溃日志,直接页面展示崩溃日志列表,调试方便,测试人员可以随时给程序猿查看日志详情,可以动态添加日志内容,手机直接查看日志内容可以分享,复制,生成长截图,高亮显示。
MNCrashMonitor(支持AndroidX) 监听程序崩溃日志,直接页面展示崩溃日志列表,调试方便,测试人员可以随时给程序猿查看日志详情,可以动态添加日志内容,手机直接查看日志内容可以分享,复制,生成长截图,高亮显示。
[![](https://jitpack.io/v/maning0303/MNCrashMonitor.svg)](https://jitpack.io/#maning0303/MNCrashMonitor)

## 截图
Expand All @@ -26,7 +26,14 @@ MNCrashMonitor 监听程序崩溃日志,直接页面展示崩溃日志列表,调
#### 2.在app目录下的build.gradle中添加依赖
``` gradle
dependencies {
(support 包版本随意)
//AndroidX
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'com.github.maning0303:MNCrashMonitor:V1.2.0'
//support版本,后期不在更新,请尽快升级到AndroidX
implementation 'com.android.support:support-v4:26.1.0'
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:recyclerview-v7:26.1.0'
Expand Down Expand Up @@ -193,6 +200,9 @@ MNCrashMonitor 监听程序崩溃日志,直接页面展示崩溃日志列表,调
```

### 版本记录:
V1.2.0:
1.升级到AndroidX

V1.1.1:
1.优化代码,修复文件分享失败问题

Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
applicationId "com.maning.crashmonitor"
minSdkVersion 16
targetSdkVersion 28
versionCode 111
versionName "1.1.1"
versionCode 120
versionName "1.2.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
4 changes: 2 additions & 2 deletions library-crashmonitor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
versionCode 111
versionName "1.1.1"
versionCode 120
versionName "1.2.0"
}
buildTypes {
release {
Expand Down

0 comments on commit 57e43e7

Please sign in to comment.