diff options
| author | Maksymilian Jopek <maks@jopek.eu> | 2021-12-09 23:15:33 +0100 |
|---|---|---|
| committer | Maksymilian Jopek <maks@jopek.eu> | 2021-12-09 23:15:33 +0100 |
| commit | 67b6f338cfe4da739d39dc6764d11efa00105d81 (patch) | |
| tree | 441ff30a8fb783e400ea7c9e600c889e12392eca /android/app/src/main/AndroidManifest.xml | |
| download | remarques-67b6f338cfe4da739d39dc6764d11efa00105d81.tar.gz remarques-67b6f338cfe4da739d39dc6764d11efa00105d81.tar.zst remarques-67b6f338cfe4da739d39dc6764d11efa00105d81.zip | |
Created a new Expo app
Diffstat (limited to 'android/app/src/main/AndroidManifest.xml')
| -rw-r--r-- | android/app/src/main/AndroidManifest.xml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..3cd9883 --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,32 @@ +<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.10lesson"> + + <uses-permission android:name="android.permission.INTERNET"/> + <!-- OPTIONAL PERMISSIONS, REMOVE WHATEVER YOU DO NOT NEED --> + <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> + <uses-permission android:name="android.permission.VIBRATE"/> + <!-- These require runtime permissions on M --> + <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> + <!-- END OPTIONAL PERMISSIONS --> + + <queries> + <!-- Support checking for http(s) links via the Linking API --> + <intent> + <action android:name="android.intent.action.VIEW" /> + <category android:name="android.intent.category.BROWSABLE" /> + <data android:scheme="https" /> + </intent> + </queries> + + <application android:name=".MainApplication" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" android:allowBackup="false" android:theme="@style/AppTheme" android:usesCleartextTraffic="true"> + <meta-data android:name="expo.modules.updates.EXPO_UPDATE_URL" android:value="YOUR-APP-URL-HERE"/> + <meta-data android:name="expo.modules.updates.EXPO_SDK_VERSION" android:value="YOUR-APP-SDK-VERSION-HERE"/> + <activity android:name=".MainActivity" android:label="@string/app_name" android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode" android:launchMode="singleTask" android:windowSoftInputMode="adjustResize" android:theme="@style/Theme.App.SplashScreen"> + <intent-filter> + <action android:name="android.intent.action.MAIN"/> + <category android:name="android.intent.category.LAUNCHER"/> + </intent-filter> + </activity> + <activity android:name="com.facebook.react.devsupport.DevSettingsActivity"/> + </application> +</manifest> |
