100 lines
5.2 KiB
XML
100 lines
5.2 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">
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.camera"
|
|
android:required="true"/>
|
|
|
|
<uses-permission android:name="android.permission.CAMERA"/>
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES"/>
|
|
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO"/>
|
|
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:authorities="org.foxarmy.barcodescannerforemployees.providers"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.BarcodeScannerForEmployees"
|
|
tools:targetApi="31">
|
|
<activity
|
|
android:name=".activities.AddCategoryActivity"
|
|
android:exported="false"/>
|
|
<activity
|
|
android:name=".activities.AddProductActivity"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.BarcodeScannerForEmployees"/>
|
|
<activity
|
|
android:name=".activities.AddAbstractProductActivity"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.BarcodeScannerForEmployees"/>
|
|
<activity
|
|
android:name=".activities.ExpiryCalendarActivity"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.BarcodeScannerForEmployees"/>
|
|
<activity
|
|
android:name=".activities.ExpiryCalendarGroupActivity"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.BarcodeScannerForEmployees"/>
|
|
<activity
|
|
android:name=".activities.FindBarcodelessAbstractProduct"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.BarcodeScannerForEmployees"/>
|
|
<activity
|
|
android:name=".activities.MainActivity"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.BarcodeScannerForEmployees"/>
|
|
<activity
|
|
android:name=".activities.LoginActivity"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.BarcodeScannerForEmployees"/>
|
|
<activity
|
|
android:name=".activities.AccountSettingsActivity"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.BarcodeScannerForEmployees"/>
|
|
<activity
|
|
android:name=".activities.GroupActivity"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.BarcodeScannerForEmployees"/>
|
|
<activity
|
|
android:name=".activities.FullscreenActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:exported="false"
|
|
android:label="@string/title_activity_fullscreen"
|
|
android:theme="@style/Theme.BarcodeScannerForEmployees.Fullscreen"/>
|
|
|
|
<activity android:name="com.journeyapps.barcodescanner.CaptureActivity"
|
|
android:screenOrientation="fullSensor"
|
|
tools:replace="android:screenOrientation"/>
|
|
|
|
<provider
|
|
android:name="androidx.core.content.FileProvider"
|
|
android:authorities="com.google.firebase.components.activities.MainActivity.provider;com.google.firebase.components.activities.FullscreenActivity.provider;com.google.firebase.components.activities.AddAbstractProductActivity.provider;com.google.firebase.components.activities.AddProductActivity.provider;com.google.firebase.components.activities.ExpiryCalendarActivity.provider;com.google.firebase.components.activities.FindBarcodelessAbstractProduct.provider;com.google.firebase.components.activities.ExpiryCalendarGroupActivity.provider;com.google.firebase.components.activities.AccountSettingsActivity.provider;com.google.firebase.components.activities.GroupActivity.provider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/file_path"/>
|
|
</provider>
|
|
|
|
<activity
|
|
android:name=".activities.NavigatorActivity"
|
|
android:exported="true"
|
|
android:theme="@style/Theme.BarcodeScannerForEmployees">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |