2023-01-25 15:06:19 +01:00
|
|
|
<?xml version='1.0' encoding='utf-8'?>
|
2023-09-11 21:14:00 +01:00
|
|
|
<manifest package="com.gpr.gabinetedigital"
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
|
android:supportsRtl="true" android:theme="@style/AppTheme"
|
|
|
|
|
android:usesCleartextTraffic="true">
|
|
|
|
|
<activity
|
|
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
|
|
|
|
|
android:exported="true" android:label="@string/title_activity_main"
|
|
|
|
|
android:launchMode="singleTask" android:name="com.gpr.gabinetedigital.MainActivity"
|
|
|
|
|
android:theme="@style/AppTheme.NoActionBarLaunch">
|
2022-12-27 11:29:09 +01:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2023-09-11 21:14:00 +01:00
|
|
|
<provider android:authorities="${applicationId}.fileprovider" android:exported="false"
|
|
|
|
|
android:grantUriPermissions="true" android:name="androidx.core.content.FileProvider">
|
|
|
|
|
<meta-data android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
|
android:resource="@xml/file_paths" />
|
2022-12-27 11:29:09 +01:00
|
|
|
</provider>
|
|
|
|
|
</application>
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2023-01-25 15:06:19 +01:00
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
2023-08-20 22:05:46 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2023-09-11 21:14:00 +01:00
|
|
|
</manifest>
|