mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: It allows HTTP connections in debug builds, and requires no configuration compared to previous/current solution where you need to edit config file to test on device. Consulted with Salakar about this. [Android] [Changed] - Allow HTTP in debug builds Pull Request resolved: https://github.com/facebook/react-native/pull/24066 Differential Revision: D14540255 Pulled By: cpojer fbshipit-source-id: f1239154c27c36c21c9b080a826f8b1d0eb0fc7d
9 lines
368 B
XML
9 lines
368 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" />
|
|
</manifest>
|