mirror of
https://github.com/bspeice/UNCCGameDay
synced 2024-11-05 07:38:13 -05:00
d03ce1427d
Added alerts every 30 minutes starting at 9am to 930pm on 12-7-13. Will have on phone today to ensure that automated alerts show properly. Having no luck with search function, will try again tomorrow.
47 lines
1.7 KiB
XML
47 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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="11"
|
|
android:targetSdkVersion="17" />
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/GameDayTheme"
|
|
android:name="com.uncc.gameday.GameDay" >
|
|
<activity
|
|
android:name="com.uncc.gameday.activities.Alerts"
|
|
android:label="@string/title_activity_alerts" >
|
|
</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.Search"
|
|
android:label="@string/title_activity_search_rsvp" >
|
|
</activity>
|
|
<activity
|
|
android:name="com.uncc.gameday.activities.Home"
|
|
android:label="@string/app_name" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<service android:name="com.uncc.gameday.alerts.AlertService"/>
|
|
</application>
|
|
|
|
</manifest>
|