Skip to content

Instantly share code, notes, and snippets.

@CreatorB
Created December 12, 2014 14:51
Show Gist options
  • Save CreatorB/6b0d7a252183d239d69f to your computer and use it in GitHub Desktop.
Save CreatorB/6b0d7a252183d239d69f to your computer and use it in GitHub Desktop.
How to Create Android Recipes App | Cara membuat Aplikasi Resep Masakan Android | http://creatorb-lab.blogspot.com/2014/12/cara-membuat-aplikasi-android-resep.html | creatorb
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="id.creatorb.resep"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Splashbe">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity
android:name=".DB_Parse"
android:label="Bahan dan Cara" >
</activity>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment