70 lines
2.6 KiB
XML
70 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.dougkeen.bart"
|
|
android:installLocation="auto"
|
|
android:versionCode="21"
|
|
android:versionName="2.1.0" >
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="8"
|
|
android:targetSdkVersion="14" />
|
|
|
|
<application
|
|
android:icon="@drawable/icon"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme" >
|
|
<activity
|
|
android:name="RoutesListActivity"
|
|
android:label="@string/app_name" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<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>
|
|
<intent-filter>
|
|
<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
|
|
android:name="ViewDeparturesActivity"
|
|
android:label="@string/departures" >
|
|
<intent-filter>
|
|
<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" />
|
|
<data android:mimeType="vnd.android.cursor.item/com.dougkeen.bart.arbitraryroute" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name="ViewMapActivity"
|
|
android:label="@string/system_map" >
|
|
</activity>
|
|
|
|
<provider
|
|
android:name=".data.BartContentProvider"
|
|
android:authorities="com.dougkeen.bart.dataprovider"
|
|
android:label="BartRunner data provider" />
|
|
|
|
<service android:name=".NotificationService" />
|
|
<service android:name=".EtdService" />
|
|
</application>
|
|
|
|
</manifest> |