mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
00ac034353
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/32606 Updates OSS builds for internals and template to target SDK 31, corresponding to Android 12. Changelog: [Updated][Android] - Bump Android compile and target SDK to 31 Reviewed By: cortinico Differential Revision: D32107409 fbshipit-source-id: 57f219d33e884200ca4f49e1afe1bfd65b0d6315
27 lines
998 B
XML
27 lines
998 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.helloworld">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<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">
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:label="@string/app_name"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
|
|
android:launchMode="singleTask"
|
|
android:windowSoftInputMode="adjustResize"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|