|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.timsu.astrid"
|
|
|
|
android:versionCode="37"
|
|
|
|
android:versionName="1.10.1">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
|
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
|
|
|
|
|
|
|
<activity android:name=".activities.TaskList"
|
|
|
|
android:label="@string/app_name">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<activity android:name=".activities.TaskView"/>
|
|
|
|
|
|
|
|
<activity android:name=".activities.TaskViewNotifier"
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:theme="@android:style/Theme.Dialog"
|
|
|
|
android:launchMode="singleTask" />
|
|
|
|
|
|
|
|
<activity android:name=".activities.TaskEdit"/>
|
|
|
|
|
|
|
|
<activity android:name=".activities.TagList"/>
|
|
|
|
|
|
|
|
<activity android:name=".activities.EditPreferences"/>
|
|
|
|
|
|
|
|
<!-- Receivers -->
|
|
|
|
|
|
|
|
<receiver android:name=".utilities.Notifications">
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<receiver android:name=".utilities.StartupReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
<category android:name="android.intent.category.HOME" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|