enrecipes/platforms/android/app/build/intermediates/bundle_manifest/release/bundle-manifest/AndroidManifest.xml
2020-12-12 23:36:10 +05:30

65 lines
2.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.vishnuraghav.enrecipes"
android:versionCode="4"
android:versionName="1.1.3" >
<uses-sdk
android:minSdkVersion="21"
android:targetSdkVersion="29" />
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true" />
<!-- <uses-feature android:name="android.hardware.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.WAKE_LOCK" />
<application
android:name="com.tns.NativeScriptApplication"
android:allowBackup="true"
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
android:hardwareAccelerated="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:requestLegacyExternalStorage="true"
android:theme="@style/AppTheme" >
<activity
android:name="com.tns.NativeScriptActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|locale|uiMode"
android:label="@string/title_activity_kimera"
android:screenOrientation="userPortrait"
android:theme="@style/LaunchScreenTheme"
android:windowSoftInputMode="adjustResize" >
<meta-data
android:name="SET_THEME_ON_LAUNCH"
android:resource="@style/AppTheme" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.tns.ErrorReportActivity" />
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="com.vishnuraghav.enrecipes.provider"
android:exported="false"
android:grantUriPermissions="true" >
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths" />
</provider>
<activity
android:name="com.yalantis.ucrop.UCropActivity"
android:screenOrientation="portrait" />
</application>
</manifest>