Skip to content

Instantly share code, notes, and snippets.

@budioktaviyan
Last active December 26, 2016 04:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save budioktaviyan/1522d66ae42cb68c6de828a40d694280 to your computer and use it in GitHub Desktop.
Save budioktaviyan/1522d66ae42cb68c6de828a40d694280 to your computer and use it in GitHub Desktop.
Android Manifest
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.baculsoft.belajarandroid">
<application
android:allowBackup="true"
android:fullBackupContent="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="com.baculsoft.belajarandroid.views.activities.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:host="baculsoft.com"
android:pathPrefix="/"
android:scheme="http" />
</intent-filter>
</activity>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment