mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
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
14 lines
520 B
XML
14 lines
520 B
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-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
|
|
|
<application
|
|
android:usesCleartextTraffic="true"
|
|
tools:targetApi="28"
|
|
tools:ignore="GoogleAppIndexingWarning">
|
|
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" android:exported="false" />
|
|
</application>
|
|
</manifest>
|