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 17:18:53 -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-12-08 21:33:46 -05:00
|
|
|
android:theme="@style/GameDayTheme"
|
2013-10-07 14:20:20 -04:00
|
|
|
android:name="com.uncc.gameday.GameDay" >
|
2013-10-01 19:39:20 -04:00
|
|
|
<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-06 14:41:48 -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-08 19:54:30 -05:00
|
|
|
<service android:name="com.uncc.gameday.alerts.AlertService"/>
|
2013-09-30 14:23:13 -04:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|