Initial commit.

This commit is contained in:
Erik C. Thauvin 2012-09-26 23:57:57 -07:00
commit dee97668f5
13 changed files with 183 additions and 0 deletions

28
AndroidManifest.xml Normal file
View file

@ -0,0 +1,28 @@
<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>