jerrym | 56d490c | 2013-01-27 06:53:20 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
| 3 | package="org.frc971"
|
| 4 | android:versionCode="1"
|
| 5 | android:versionName="1.0" >
|
| 6 |
|
| 7 | <uses-sdk
|
| 8 | android:minSdkVersion="9"
|
| 9 | android:targetSdkVersion="17" /> |
| 10 | <permission android:name="android.permission.INTERNET"></permission>
|
| 11 |
|
| 12 | <application
|
| 13 | android:allowBackup="true"
|
| 14 | android:icon="@drawable/ic_launcher"
|
| 15 | android:label="@string/app_name"
|
| 16 | android:theme="@style/AppTheme" >
|
| 17 | <activity
|
| 18 | android:name="org.frc971.MainActivity"
|
| 19 | android:label="@string/app_name" >
|
| 20 | <intent-filter>
|
| 21 | <action android:name="android.intent.action.MAIN" />
|
| 22 |
|
| 23 | <category android:name="android.intent.category.LAUNCHER" />
|
| 24 | </intent-filter>
|
| 25 | </activity>
|
| 26 | </application>
|
| 27 |
|
| 28 | </manifest> |