2013-10-01 19:39:20 -04:00
|
|
|
<?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
|
2013-10-09 20:20:04 -04:00
|
|
|
android:minSdkVersion="11"
|
2013-09-30 14:23:13 -04:00
|
|
|
android:targetSdkVersion="17" />
|
2013-10-18 21:45:59 -04:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2013-09-30 14:23:13 -04:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2013-10-28 23:06:37 -04:00
|
|
|
android:theme="@style/Theme.Unccgameday"
|
2013-10-07 14:20:20 -04:00
|
|
|
android:name="com.uncc.gameday.GameDay" >
|
2013-09-30 14:23:13 -04:00
|
|
|
<activity
|
2013-09-30 14:39:15 -04:00
|
|
|
android:name="com.uncc.gameday.activities.Alerts"
|
2013-10-01 20:17:21 -04:00
|
|
|
android:label="@string/title_activity_alerts" >
|
2013-10-01 19:39:20 -04:00
|
|
|
</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>
|
2013-12-05 13:37:01 -05:00
|
|
|
<activity
|
|
|
|
android:name="com.uncc.gameday.activities.Search"
|
|
|
|
android:label="@string/title_activity_search_rsvp" >
|
|
|
|
</activity>
|
2013-10-01 19:39:20 -04:00
|
|
|
<activity
|
|
|
|
android:name="com.uncc.gameday.activities.Home"
|
2013-10-01 20:17:21 -04:00
|
|
|
android:label="@string/app_name" >
|
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>
|
2013-12-04 11:13:21 -05:00
|
|
|
<service android:name="com.uncc.gameday.alerts.AlertService"/>
|
2013-09-30 14:23:13 -04:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|