Skip to content

Instantly share code, notes, and snippets.

@PureSpider
Forked from anonymous/gist:5076200
Last active December 14, 2015 10:59
Show Gist options
  • Save PureSpider/5076203 to your computer and use it in GitHub Desktop.
Save PureSpider/5076203 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="pi.shade.mobileapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="17"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Holo" >
<activity
android:name="pi.shade.mobileapp.MainActivity"
android:label="@string/app_name" >
<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