Summary: This soft-breaks Android Studio support because folder names no longer map to package names, but this will be mitigated by future diffs. Steps taken for rename: ``` cd xplat/sonar/android/; ambr 'com.facebook.sonar' 'com.facebook.flipper' ``` Reviewed By: danielbuechele Differential Revision: D9850009 fbshipit-source-id: d26d8ab783e7050e4e2fbdd0c35eae3f97879464
32 lines
1.1 KiB
XML
32 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.flipper.sample">
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="15"
|
|
android:targetSdkVersion="24"
|
|
/>
|
|
|
|
<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>
|
|
</activity>
|
|
<activity android:name="com.facebook.flipper.android.diagnostics.SonarDiagnosticActivity"
|
|
android:exported="true"/>
|
|
</application>
|
|
|
|
</manifest>
|