Skip to content

Instantly share code, notes, and snippets.

Created June 17, 2011 22:36
Show Gist options
  • Save anonymous/1032513 to your computer and use it in GitHub Desktop.
Save anonymous/1032513 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dogwalk"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="10" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".KevinWynneScheduleActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="adnroid.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".myMenu"
android:label="@string/app_name">
<intent-filter>
<action android:name="com.dogwalk.CLEARSCREEN" />
<category android:name="android.intent.category.LAUNCHER" />
<intent-filter/>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment