2011-05-23 18:59:34 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-11-05 18:51:20 +00:00
|
|
|
package="com.dougkeen.bart"
|
2012-08-13 17:27:50 +00:00
|
|
|
android:installLocation="auto"
|
2012-09-26 18:28:20 +00:00
|
|
|
android:versionCode="22"
|
|
|
|
android:versionName="2.1.0-beta" >
|
2011-11-05 18:51:20 +00:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
|
2012-07-15 17:00:39 +00:00
|
|
|
<uses-sdk
|
2012-09-11 22:49:36 +00:00
|
|
|
android:minSdkVersion="8"
|
2012-07-15 17:00:39 +00:00
|
|
|
android:targetSdkVersion="14" />
|
2011-11-05 18:51:20 +00:00
|
|
|
|
|
|
|
<application
|
2012-09-18 17:11:52 +00:00
|
|
|
android:name=".BartRunnerApplication"
|
2011-11-05 18:51:20 +00:00
|
|
|
android:icon="@drawable/icon"
|
2012-07-15 17:00:39 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/AppTheme" >
|
2011-11-05 18:51:20 +00:00
|
|
|
<activity
|
2012-09-25 21:31:06 +00:00
|
|
|
android:name=".activities.RoutesListActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden"
|
2012-07-15 17:00:39 +00:00
|
|
|
android:label="@string/app_name" >
|
|
|
|
<intent-filter>
|
2011-11-05 18:51:20 +00:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2012-07-15 17:00:39 +00:00
|
|
|
<intent-filter>
|
2011-11-05 18:51:20 +00:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<action android:name="android.intent.action.EDIT" />
|
|
|
|
<action android:name="android.intent.action.PICK" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:mimeType="vnd.android.cursor.dir/com.dougkeen.bart.favorite" />
|
|
|
|
</intent-filter>
|
2012-07-15 17:00:39 +00:00
|
|
|
<intent-filter>
|
2011-11-05 18:51:20 +00:00
|
|
|
<action android:name="android.intent.action.GET_CONTENT" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:mimeType="vnd.android.cursor.item/com.dougkeen.bart.favorite" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
2012-09-25 21:31:06 +00:00
|
|
|
android:name=".activities.ViewDeparturesActivity"
|
2012-07-15 17:00:39 +00:00
|
|
|
android:label="@string/departures" >
|
|
|
|
<intent-filter>
|
2011-11-05 18:51:20 +00:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:mimeType="vnd.android.cursor.item/com.dougkeen.bart.favorite" />
|
2012-07-16 15:06:31 +00:00
|
|
|
<data android:mimeType="vnd.android.cursor.item/com.dougkeen.bart.arbitraryroute" />
|
2011-11-05 18:51:20 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
2012-09-25 21:31:06 +00:00
|
|
|
android:name=".activities.ViewMapActivity"
|
2012-07-15 17:00:39 +00:00
|
|
|
android:label="@string/system_map" >
|
2011-11-05 18:51:20 +00:00
|
|
|
</activity>
|
|
|
|
|
|
|
|
<provider
|
2012-07-15 17:00:39 +00:00
|
|
|
android:name=".data.BartContentProvider"
|
2011-11-05 18:51:20 +00:00
|
|
|
android:authorities="com.dougkeen.bart.dataprovider"
|
2012-09-17 15:13:50 +00:00
|
|
|
android:exported="false"
|
2012-07-15 17:00:39 +00:00
|
|
|
android:label="BartRunner data provider" />
|
2012-09-11 22:49:36 +00:00
|
|
|
|
2012-09-18 17:11:52 +00:00
|
|
|
<service
|
2012-10-02 04:03:08 +00:00
|
|
|
android:name=".services.BoardedDepartureService"
|
2012-09-18 17:11:52 +00:00
|
|
|
android:exported="false" />
|
|
|
|
<service
|
2012-09-25 21:31:06 +00:00
|
|
|
android:name=".services.EtdService"
|
2012-09-18 17:11:52 +00:00
|
|
|
android:exported="false" />
|
2012-09-17 15:13:50 +00:00
|
|
|
|
2012-09-18 17:11:52 +00:00
|
|
|
<receiver
|
2012-09-25 21:31:06 +00:00
|
|
|
android:name=".receivers.AlarmBroadcastReceiver"
|
2012-09-18 17:11:52 +00:00
|
|
|
android:exported="false" >
|
2012-09-17 15:13:50 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.dougkeen.action.ALARM" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:mimeType="vnd.android.cursor.item/com.dougkeen.bart.favorite" />
|
|
|
|
<data android:mimeType="vnd.android.cursor.item/com.dougkeen.bart.arbitraryroute" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2011-11-05 18:51:20 +00:00
|
|
|
</application>
|
2011-05-23 18:59:34 +00:00
|
|
|
|
|
|
|
</manifest>
|