Commit 9c1761b8 authored by wanglei's avatar wanglei

.....

parent b372b182
...@@ -190,6 +190,16 @@ ...@@ -190,6 +190,16 @@
</intent-filter> </intent-filter>
</receiver> </receiver>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
<meta-data <meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID" android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="ca-app-pub-3838048042416287~2725136264" /> android:value="ca-app-pub-3838048042416287~2725136264" />
......
...@@ -222,12 +222,15 @@ class AAADumentFragment() : Baragment<FragmentUmentBinding>() { ...@@ -222,12 +222,15 @@ class AAADumentFragment() : Baragment<FragmentUmentBinding>() {
} }
fun getSelectItems(): List<DocumeewewntBean> { fun getSelectItems(): List<DocumeewewntBean> {
if (isInitialized) {
return adapter.items.filter { it.isSelect } return adapter.items.filter { it.isSelect }
} }
return listOf()
}
fun removeList(list: List<DocumeewewntBean>) { fun removeList(list: List<DocumeewewntBean>) {
list.forEach { if (isInitialized) {
adapter.remove(it) list.forEach { adapter.remove(it) }
} }
} }
......
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<cache-path
name="cache_files"
path="." />
<external-path
name="extern_files"
path="." />
<files-path
name="files"
path="." />
</paths>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment