noussd/AndroidManifest.xml
erik 1afdca2680 Version: 1.0.1
Removed uneeded dependencies.
Added screenshots.
Localized for German, French, Spanish, Italian and Swedish.
2012-10-01 16:23:25 -07:00

28 lines
No EOL
933 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.thauvin.erik.android.noussd"
android:versionCode="2"
android:versionName="1.0.1" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="8" />
<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>