UNCCGameDay/AndroidManifest.xml

40 lines
1.3 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2013-09-30 14:23:13 -04:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.uncc.gameday"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
2013-09-30 14:39:15 -04:00
android:name="com.uncc.gameday.activities.Alerts"
2013-09-30 14:23:13 -04:00
android:label="@string/app_name" >
</activity>
<activity
android:name="com.uncc.gameday.activities.Parking"
android:label="@string/title_activity_parking" >
</activity>
<activity
android:name="com.uncc.gameday.activities.Registration"
android:label="@string/title_activity_registration" >
</activity>
<activity
android:name="com.uncc.gameday.activities.Home"
android:label="@string/title_activity_home" >
2013-09-30 14:23:13 -04:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>