Skip to content

Instantly share code, notes, and snippets.

@omergulen
Created July 13, 2018 14:55
Show Gist options
  • Select an option

  • Save omergulen/93c936a93f634f3e44405751769e4a74 to your computer and use it in GitHub Desktop.

Select an option

Save omergulen/93c936a93f634f3e44405751769e4a74 to your computer and use it in GitHub Desktop.
manifest_ss_share.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.soguk_savas">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:allowBackup="false"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="adjustResize">
<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" />
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:grantUriPermissions="true"
android:exported="false">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/filepaths" />
</provider>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment