Summary: Wanted to have a way to test fragment support in open source for https://github.com/facebook/flipper/issues/1209. Stacked on https://github.com/facebook/flipper/issues/1327. Pull Request resolved: https://github.com/facebook/flipper/pull/1328 Test Plan:  Reviewed By: jknoxville Differential Revision: D22356283 Pulled By: passy fbshipit-source-id: 2ad84df0aae85634c8245e71f18b803ce8dd6ca0
65 lines
2.7 KiB
XML
65 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
~ Copyright (c) Facebook, Inc. and its affiliates.
|
|
~
|
|
~ This source code is licensed under the MIT license found in the LICENSE
|
|
~ file in the root directory of this source tree.
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.facebook.flipper.sample">
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<application
|
|
android:name=".FlipperSampleApplication"
|
|
android:label="@string/app_name"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:allowBackup="false"
|
|
android:theme="@style/NoTitleBarWhiteBG"
|
|
android:debuggable="true">
|
|
<activity android:name=".MainActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data android:scheme="flipper" android:host="demo_page" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name=".DeepLinkActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data android:scheme="flipper" android:host="deep_link_activity" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name=".LayoutTestActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data android:scheme="flipper" android:host="layout_test_activity" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name=".FragmentTestActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data android:scheme="flipper" android:host="fragment_test_activity" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="com.facebook.flipper.android.diagnostics.FlipperDiagnosticActivity"
|
|
android:exported="true"/>
|
|
<activity android:name="com.facebook.flipper.connectivitytest.ConnectionTestActivity"
|
|
android:exported="true"/>
|
|
</application>
|
|
|
|
</manifest>
|