Skip to content

Commit

Permalink
## 1.0.17
Browse files Browse the repository at this point in the history
 - 修复ids的tagId的问题,兼容androidx库
  • Loading branch information
aaatttcccc committed Sep 5, 2019
1 parent 330f91d commit 070b297
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
#### Step 2. Add the dependency

dependencies {
implementation 'com.github.zhongjhATC.AlbumCameraRecorder:albumCameraRecorderCommon:1.0.15' // 公共库,必须使用此库
implementation 'com.github.zhongjhATC.AlbumCameraRecorder:multilibrary:1.0.15' // 核心lib,调用显示相册、录屏、录音等
implementation 'com.github.zhongjhATC.AlbumCameraRecorder:progresslibrary:1.0.15' // 配套使用,主要用于获取数据后进行相关显示,相应的上传进度显示,如果你只需要获取照片录像录音等数据,自行写获取后呈现方式,可以不需要是用这个
implementation 'com.github.zhongjhATC.AlbumCameraRecorder:albumCameraRecorderCommon:1.0.17' // 公共库,必须使用此库
implementation 'com.github.zhongjhATC.AlbumCameraRecorder:multilibrary:1.0.17' // 核心lib,调用显示相册、录屏、录音等
implementation 'com.github.zhongjhATC.AlbumCameraRecorder:progresslibrary:1.0.17' // 配套使用,主要用于获取数据后进行相关显示,相应的上传进度显示,如果你只需要获取照片录像录音等数据,自行写获取后呈现方式,可以不需要是用这个
}

## 快照
Expand Down
3 changes: 3 additions & 0 deletions UPDATE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# 历史更新

## 1.0.17
- 修复ids的tagId的问题,兼容androidx库

## 1.0.15
- 纯浏览图片功能增加了支持path方式。
- 这方面浏览功能考虑以后增加共享过渡动画(这个动画其实另外一个demo已经做了很久了,但是前段时间发现了内存泄漏,即使翻墙查询相关解决方法也解决不了,希望有研究过的大牛帮忙解答下:https://github.com/googlesamples/android-unsplash/issues/12)。
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ task clean(type: Delete) {

ext {

versionCode = 1016
versionName = '1.0.16'
versionCode = 1017
versionName = '1.0.17'

androidCompileSdkVersion = 26
androidBuildToolsVersion = '26.0.2'
Expand Down
2 changes: 1 addition & 1 deletion multilibrary/src/main/res/values/ids.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<item name="tagid" type="id">tagid</item> <!-- 用于区分tagid -->
<item name="tagid" type="id"/> <!-- 用于区分tagid -->

</resources>

0 comments on commit 070b297

Please sign in to comment.