noussd/AndroidManifest.xml
2012-09-26 23:57:57 -07:00

28 lines
No EOL
932 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.thauvin.erik.android.noussd"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoDisplay" >
<activity
android:name=".NoUSSD"
android:label="@string/app_name" >
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<action android:name="android.intent.action.VIEW" />
<data android:scheme="tel" />
</intent-filter>
</activity>
</application>
</manifest>