|
1 | 1 | <?xml version="1.0" encoding="utf-8"?>
|
2 |
| -<manifest package="com.plusonelabs.calendar" |
| 2 | +<manifest package="org.andstatus.todoagenda" |
3 | 3 | xmlns:android="http://schemas.android.com/apk/res/android"
|
4 | 4 | android:installLocation="internalOnly">
|
5 | 5 |
|
|
11 | 11 | android:label="@string/app_name"
|
12 | 12 | android:theme="@style/Theme.CalendarConfiguration.Dark">
|
13 | 13 |
|
14 |
| - <activity android:name=".MainActivity" |
| 14 | + <activity android:name="org.andstatus.todoagenda.MainActivity" |
15 | 15 | android:exported="true"
|
16 | 16 | android:launchMode="singleTask"
|
17 | 17 | android:finishOnTaskLaunch="true"
|
|
27 | 27 | </intent-filter>
|
28 | 28 | </activity>
|
29 | 29 |
|
30 |
| - <activity android:name=".WidgetConfigurationActivity" |
| 30 | + <activity android:name="org.andstatus.todoagenda.WidgetConfigurationActivity" |
31 | 31 | android:excludeFromRecents="true"
|
32 | 32 | android:finishOnTaskLaunch="true">
|
33 | 33 | </activity>
|
34 | 34 |
|
35 | 35 | <receiver
|
36 |
| - android:name=".EventAppWidgetProvider" |
| 36 | + android:name="org.andstatus.todoagenda.EventAppWidgetProvider" |
37 | 37 | android:label="@string/widget_name">
|
38 | 38 | <intent-filter>
|
39 | 39 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
|
|
43 | 43 | android:name="android.appwidget.provider"
|
44 | 44 | android:resource="@xml/calendar_appwidget_info"/>
|
45 | 45 | </receiver>
|
46 |
| - <receiver android:name=".EnvironmentChangedReceiver"> |
| 46 | + <receiver android:name="org.andstatus.todoagenda.EnvironmentChangedReceiver"> |
47 | 47 | <intent-filter>
|
48 | 48 | <action android:name="android.intent.action.TIMEZONE_CHANGED"/>
|
49 | 49 | <action android:name="android.intent.action.DATE_CHANGED"/>
|
|
57 | 57 | <data android:host="com.android.calendar"/>
|
58 | 58 | </intent-filter>
|
59 | 59 | <intent-filter>
|
60 |
| - <action android:name="com.plusonelabs.calendar.action.REFRESH"/> |
| 60 | + <action android:name="org.andstatus.todoagenda.action.REFRESH"/> |
61 | 61 | </intent-filter>
|
62 | 62 | </receiver>
|
63 |
| - <receiver android:name=".AlarmReceiver"> |
| 63 | + <receiver android:name="org.andstatus.todoagenda.AlarmReceiver"> |
64 | 64 | <intent-filter>
|
65 | 65 | <action android:name="android.intent.action.TIMEZONE_CHANGED"/>
|
66 | 66 | <action android:name="android.intent.action.BOOT_COMPLETED"/>
|
|
69 | 69 | </receiver>
|
70 | 70 |
|
71 | 71 | <service
|
72 |
| - android:name=".EventWidgetService" |
| 72 | + android:name="org.andstatus.todoagenda.EventWidgetService" |
73 | 73 | android:exported="false"
|
74 | 74 | android:permission="android.permission.BIND_REMOTEVIEWS">
|
75 | 75 | </service>
|
|
0 commit comments