mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
bfb68c09ee
Summary: This PR sets gradle targetSdkVersion to 26, which will satisfy new requirements from Play Store. Also removed redundant config from manifest files. Closes https://github.com/facebook/react-native/pull/19944 Differential Revision: D8679682 Pulled By: hramos fbshipit-source-id: 5c900d47be1d8b81ce340e38a05d9b309da143c3
18 lines
743 B
XML
18 lines
743 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.facebook.react.tests.gradle">
|
|
<supports-screens android:anyDensity="true" />
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<!-- needed for screenshot tests -->
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<application
|
|
android:hardwareAccelerated="false">
|
|
<activity
|
|
android:name="com.facebook.react.testing.ReactAppTestActivity"
|
|
android:theme="@style/Theme.ReactNative.AppCompat.Light.NoActionBar.FullScreen"
|
|
/>
|
|
</application>
|
|
</manifest>
|