mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: This diff migrates RN to AndroidX. As part of this diff I disabled few tests in RNAndroid OSS that will be re-enabled this week. As part of the refactor of BUCK files in OSS Reviewed By: shergin Differential Revision: D14200097 fbshipit-source-id: 932fcae251d1553e672acd67ecd0e703dcb364aa
28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.facebook.react.tests">
|
|
|
|
<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">
|
|
<uses-library android:name="android.test.runner" />
|
|
<activity
|
|
android:name="com.facebook.react.testing.ReactAppTestActivity"
|
|
android:theme="@style/Theme.ReactNative.AppCompat.Light.NoActionBar.FullScreen">
|
|
</activity>
|
|
</application>
|
|
|
|
<instrumentation
|
|
android:name="androidx.test.runner.AndroidJUnitRunner"
|
|
android:targetPackage="com.facebook.react.tests"
|
|
android:label="Buck runs instrumentation tests"/>
|
|
|
|
</manifest>
|