增加开源Utils库,沉淀好久的工具类,后续将所有工具的调用替换成此库

Signed-off-by: 董宏宇 <martindhy@gmail.com>
This commit is contained in:
董宏宇
2021-09-16 21:20:29 +08:00
parent 62bfbedaa3
commit b2f30750b3
104 changed files with 47184 additions and 2 deletions

View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mogo.eagle.core.utilcode.util">
<application>
<activity
android:name="com.mogo.eagle.core.utilcode.util.UtilsTransActivity4MainProcess"
android:configChanges="orientation|keyboardHidden|screenSize"
android:theme="@style/ActivityTranslucent"
android:windowSoftInputMode="stateHidden|stateAlwaysHidden" />
<activity
android:name="com.mogo.eagle.core.utilcode.util.UtilsTransActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:multiprocess="true"
android:theme="@style/ActivityTranslucent"
android:windowSoftInputMode="stateHidden|stateAlwaysHidden" />
<provider
android:name="com.mogo.eagle.core.utilcode.util.UtilsFileProvider"
android:authorities="${applicationId}.utilcode.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/util_code_provider_paths" />
</provider>
<service
android:name="com.mogo.eagle.core.utilcode.util.MessengerUtils$ServerService"
android:exported="false">
<intent-filter>
<action android:name="${applicationId}.messenger" />
</intent-filter>
</service>
</application>
</manifest>