58 lines
1.9 KiB
XML
58 lines
1.9 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<manifest
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="cc.winboll.studio.libaes">
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<uses-feature android:name="android.hardware.camera" android:required="true" />
|
|
|
|
<application
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
|
android:usesCleartextTraffic="true"
|
|
tools:ignore="GoogleAppIndexingWarning">
|
|
|
|
<activity
|
|
android:name="cc.winboll.studio.libaes.unittests.SecondaryLibraryActivity"
|
|
android:exported="true"/>
|
|
|
|
<activity
|
|
android:name="cc.winboll.studio.libaes.unittests.TestDrawerFragmentActivity"
|
|
android:exported="true"/>
|
|
|
|
<activity
|
|
android:name="cc.winboll.studio.libaes.unittests.TestAToolbarActivity"
|
|
android:exported="true"/>
|
|
|
|
<activity
|
|
android:name="cc.winboll.studio.libaes.unittests.TestASupportToolbarActivity"
|
|
android:exported="true"/>
|
|
|
|
<service
|
|
android:name="cc.winboll.studio.libaes.winboll.WinBoLLClientService"
|
|
android:exported="true"/>
|
|
|
|
<service
|
|
android:name="cc.winboll.studio.libaes.winboll.AssistantService"
|
|
android:exported="true"/>
|
|
|
|
<service
|
|
android:name="cc.winboll.studio.libaes.winboll.WinBoLLMail"
|
|
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_provider"/>
|
|
|
|
</provider>
|
|
|
|
</application>
|
|
|
|
</manifest>
|