UNPKG

@nativeframe/react-native-native-frame

Version:
121 lines (107 loc) 4.75 kB
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.preview" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="24" android:targetSdkVersion="35" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.CAMERA" /> <uses-feature android:name="android.hardware.camera.any" /> <uses-feature android:name="android.hardware.camera.raw" android:required="false" /> <!-- This manifest file is used only by Gradle to configure debug-only capabilities for React Native Apps. --> <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <permission android:name="com.preview.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" android:protectionLevel="signature" /> <uses-permission android:name="com.preview.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" /> <application android:allowBackup="true" android:appComponentFactory="androidx.core.app.CoreComponentFactory" android:debuggable="true" android:extractNativeLibs="false" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/Theme.Android" > <activity android:name="com.preview.MainActivity" android:exported="true" android:label="Preview" android:launchMode="singleInstance" android:screenOrientation="portrait" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name="com.preview.Cam2CamActivity" android:label="Cam to Cam" android:launchMode="singleInstance" android:screenOrientation="portrait" /> <service android:name="com.oney.WebRTCModule.MediaProjectionService" android:foregroundServiceType="mediaProjection" > </service> <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" android:exported="false" /> <!-- Service for holding metadata. Cannot be instantiated. Metadata will be merged from other manifests. --> <service android:name="androidx.camera.core.impl.MetadataHolderService" android:enabled="false" android:exported="false" > <meta-data android:name="androidx.camera.core.impl.MetadataHolderService.DEFAULT_CONFIG_PROVIDER" android:value="androidx.camera.camera2.Camera2Config$DefaultProvider" /> </service> <provider android:name="androidx.startup.InitializationProvider" android:authorities="com.preview.androidx-startup" android:exported="false" > <meta-data android:name="androidx.emoji2.text.EmojiCompatInitializer" android:value="androidx.startup" /> <meta-data android:name="androidx.lifecycle.ProcessLifecycleInitializer" android:value="androidx.startup" /> <meta-data android:name="androidx.profileinstaller.ProfileInstallerInitializer" android:value="androidx.startup" /> </provider> <receiver android:name="androidx.profileinstaller.ProfileInstallReceiver" android:directBootAware="false" android:enabled="true" android:exported="true" android:permission="android.permission.DUMP" > <intent-filter> <action android:name="androidx.profileinstaller.action.INSTALL_PROFILE" /> </intent-filter> <intent-filter> <action android:name="androidx.profileinstaller.action.SKIP_FILE" /> </intent-filter> <intent-filter> <action android:name="androidx.profileinstaller.action.SAVE_PROFILE" /> </intent-filter> <intent-filter> <action android:name="androidx.profileinstaller.action.BENCHMARK_OPERATION" /> </intent-filter> </receiver> <meta-data android:name="com.facebook.soloader.enabled" android:value="false" /> </application> </manifest>