mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-08 17:22:05 +08:00
Summary: <img width="860" alt="screen shot 2015-12-03 at 3 38 02 pm" src="https://cloud.githubusercontent.com/assets/5563225/11554542/e7a33554-99d3-11e5-8d3a-e9ea47952a28.png"> Closes https://github.com/facebook/react-native/pull/4524 Reviewed By: svcscm Differential Revision: D2717843 Pulled By: mkonicek fb-gh-sync-id: 7828a7f28bb95be3d292d0ae3351c9d9678bb964
26 lines
974 B
XML
26 lines
974 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.facebook.react.uiapp" >
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/launcher_icon"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/Theme.ReactNative.AppCompat.Light" >
|
|
<activity
|
|
android:name=".UIExplorerActivity"
|
|
android:label="@string/app_name" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
|
|
</application>
|
|
|
|
</manifest>
|