Skip to content

Commit

Permalink
修复多余参数;
Browse files Browse the repository at this point in the history
  • Loading branch information
lcyluo committed Dec 25, 2024
1 parent 543f3b9 commit aa43bad
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ allprojects {
```gradle
dependencies {
implementation 'com.github.lcyluo:EasyPhotos:1.1.7'
implementation 'com.github.lcyluo:EasyPhotos:1.2.4.6'
}
Expand Down Expand Up @@ -113,9 +113,9 @@ dependencies {


## 更新日志
**1.1.9
**1.2.4.6

- 修复部分机型加载相册时间过久的BUG
- 适配 Android14 版本



Expand Down
6 changes: 2 additions & 4 deletions demo/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,15 @@
android:name="androidx.core.content.FileProvider"
android:authorities="com.huantansheng.easyphotos.demo.fileprovider"
android:exported="false"
android:grantUriPermissions="true"
tools:replace="android:exported">
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths_public" />
</provider>

<activity
android:name="com.huantansheng.easyphotos.demo.SampleFragments"
android:exported="false"
tools:replace="android:exported" />
android:exported="false" />

</application>

Expand Down
3 changes: 1 addition & 2 deletions easyPhotos/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@
<service
android:name=".utils.BackgroundCallService"
android:exported="false"
android:foregroundServiceType="camera"
tools:replace="android:exported" />
android:foregroundServiceType="camera" />
</application>

</manifest>

0 comments on commit aa43bad

Please sign in to comment.