Skip to content

Instantly share code, notes, and snippets.

@pbrisbin
Created October 10, 2010 00:33
Show Gist options
  • Select an option

  • Save pbrisbin/618767 to your computer and use it in GitHub Desktop.

Select an option

Save pbrisbin/618767 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="rawAudio.apk"
android:versionCode="1"
android:versionName="1.0">
<application android:label="@string/app_name"
android:icon="@drawable/icon48x48" >
<activity android:name=".RawAudio"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".StreamMusic" />
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment