Initial import.

This commit is contained in:
Erik C. Thauvin 2008-11-04 08:39:33 +00:00
parent edeb77f683
commit 258d1ee693
17 changed files with 852 additions and 0 deletions

12
AndroidManifest.xml Normal file
View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.thauvin.erik.android.tiproid" android:versionCode="2" android:versionName="0.2">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:label="@string/app_name" android:name="Tiproid">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>