2012-04-03 13:07:33 -06:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.woozle.penaltytimer"
|
2014-03-03 20:19:07 -07:00
|
|
|
android:versionCode="8"
|
|
|
|
android:versionName="1.5">
|
2012-05-26 16:22:14 -06:00
|
|
|
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="4" />
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
|
|
|
<application android:label="@string/app_name" android:description="@string/description" android:icon="@drawable/ic_launcher">
|
|
|
|
<activity android:name="PenaltyTimer">
|
2012-04-03 13:07:33 -06:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|