Merge branch 'branch_new_dev' into branch_new
This commit is contained in:
@@ -210,6 +210,16 @@
|
||||
android:name=".service.CancelNoticeService"
|
||||
android:enabled="true"
|
||||
android:exported="true" />
|
||||
|
||||
<!-- <provider
|
||||
android:name="androidx.core.content.FileProvider"
|
||||
android:authorities="${applicationId}.fileprovider"
|
||||
android:exported="false"
|
||||
android:grantUriPermissions="true">
|
||||
<meta-data
|
||||
android:name="android.support.FILE_PROVIDER_PATHS"
|
||||
android:resource="@xml/file_paths" />
|
||||
</provider>-->
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
8
MainModule/src/main/res/color/select_item_text.xml
Normal file
8
MainModule/src/main/res/color/select_item_text.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- 按下状态:文本颜色为深色 -->
|
||||
<item android:state_pressed="true" android:color="#FF333333" />
|
||||
|
||||
<!-- 默认状态:文本颜色为白色 -->
|
||||
<item android:color="@android:color/white" />
|
||||
</selector>
|
||||
@@ -1,23 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<paths>
|
||||
<!-- Environment.getExternalStorageDirectory()-->
|
||||
<external-path
|
||||
name="external-path"
|
||||
path="."/>
|
||||
<!-- Context.getExternalCacheDir() -->
|
||||
<external-cache-path
|
||||
name="external-cache-path"
|
||||
path="."/>
|
||||
<!-- Context.getExternalFilesDir(null) -->
|
||||
<external-files-path
|
||||
name="external-files-path"
|
||||
path="."/>
|
||||
<!-- Context.getFilesDir() -->
|
||||
<files-path
|
||||
name="files_path"
|
||||
path="."/>
|
||||
|
||||
<root-path
|
||||
name="name"
|
||||
path="."/>
|
||||
</paths>
|
||||
Reference in New Issue
Block a user