mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
7795a672d3
Summary: fixes #19073 Changelog: ---------- [Android] [Fixed] - Add error description to Image onError callback Pull Request resolved: https://github.com/facebook/react-native/pull/22737 Differential Revision: D13676224 Pulled By: hramos fbshipit-source-id: 0dea7e97ae6517b8980ad02827f19d22cd3ef933
20 lines
850 B
XML
20 lines
850 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" />
|
|
<!-- needed for image onError tests -->
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application
|
|
android:hardwareAccelerated="false">
|
|
<activity
|
|
android:name="com.facebook.react.testing.ReactAppTestActivity"
|
|
android:theme="@style/Theme.ReactNative.AppCompat.Light.NoActionBar.FullScreen"
|
|
/>
|
|
</application>
|
|
</manifest>
|