|
22 | 22 | <meta-data android:name="io.branch.sdk.BranchKey" android:value="@string/branch_key_live" />
|
23 | 23 |
|
24 | 24 | <activity
|
25 |
| - android:name=".activities.MainActivity" |
| 25 | + android:name=".core.main.MainActivity" |
26 | 26 | android:label="@string/app_name"
|
27 | 27 | android:theme="@style/SplashTheme"
|
28 | 28 | android:configChanges="orientation|screenSize|keyboardHidden">
|
|
42 | 42 | android:value=".activities.SearchActivity" />
|
43 | 43 | </activity>
|
44 | 44 | <activity
|
45 |
| - android:name=".activities.auth.UserProfileActivity" |
| 45 | + android:name=".core.auth.profile.UserProfileActivity" |
46 | 46 | android:label="@string/title_activity_user_profile"
|
47 | 47 | android:configChanges="orientation|screenSize|keyboardHidden"/>
|
48 | 48 | <activity
|
49 |
| - android:name=".activities.auth.EditProfileActivity" |
| 49 | + android:name=".core.auth.profile.EditProfileActivity" |
50 | 50 | android:label="@string/title_activity_edit_profile"
|
51 | 51 | android:configChanges="orientation|screenSize|keyboardHidden"/>
|
52 | 52 | <activity
|
53 | 53 | android:name="com.yalantis.ucrop.UCropActivity"
|
54 | 54 | android:screenOrientation="portrait"
|
55 | 55 | android:theme="@style/Theme.AppCompat.Light.NoActionBar"/>
|
56 | 56 | <activity
|
57 |
| - android:name=".activities.auth.ChangePasswordActivity" |
| 57 | + android:name=".core.auth.ChangePasswordActivity" |
58 | 58 | android:configChanges="orientation|screenSize|keyboardHidden"
|
59 | 59 | android:label="@string/title_activity_change_password" />
|
60 | 60 | <activity
|
61 |
| - android:name=".activities.auth.SignUpActivity" |
| 61 | + android:name=".core.auth.SignUpActivity" |
62 | 62 | android:label="@string/title_activity_sign_up"
|
63 | 63 | android:theme="@style/AppTheme.NoActionBar.Alternate"
|
64 | 64 | android:configChanges="orientation|screenSize|keyboardHidden"/>
|
65 | 65 | <activity
|
66 |
| - android:name=".activities.auth.LoginActivity" |
| 66 | + android:name=".core.auth.LoginActivity" |
67 | 67 | android:label="@string/title_activity_login"
|
68 | 68 | android:theme="@style/AppTheme.NoActionBar.Alternate"
|
69 | 69 | android:configChanges="orientation|screenSize|keyboardHidden"/>
|
70 | 70 | <activity
|
71 |
| - android:name=".activities.SettingsActivity" |
| 71 | + android:name=".core.settings.SettingsActivity" |
72 | 72 | android:label="@string/action_settings"
|
73 | 73 | android:exported="false"
|
74 | 74 | android:theme="@style/AppTheme.NoActionBar.Alternate"
|
|
79 | 79 | </intent-filter>
|
80 | 80 | </activity>
|
81 | 81 | <activity
|
82 |
| - android:name=".activities.TrackSessionsActivity" |
| 82 | + android:name=".core.track.session.TrackSessionsActivity" |
83 | 83 | android:label="@string/title_section_tracks"
|
84 | 84 | android:theme="@style/AppTheme.NoActionBar.Alternate"
|
85 | 85 | android:configChanges="orientation|screenSize|keyboardHidden"/>
|
86 | 86 | <activity
|
87 |
| - android:name=".activities.LocationActivity" |
| 87 | + android:name=".core.location.LocationActivity" |
88 | 88 | android:label="@string/title_section_location"
|
89 | 89 | android:theme="@style/AppTheme.NoActionBar.Alternate"
|
90 | 90 | android:configChanges="orientation|screenSize|keyboardHidden"/>
|
91 | 91 | <activity
|
92 |
| - android:name=".activities.SpeakerDetailsActivity" |
| 92 | + android:name=".core.speaker.SpeakerDetailsActivity" |
93 | 93 | android:label="@string/title_section_speakerlist"
|
94 | 94 | android:theme="@style/AppTheme.NoActionBar"
|
95 | 95 | android:configChanges="orientation|screenSize|keyboardHidden"/>
|
96 | 96 |
|
97 | 97 | <activity
|
98 |
| - android:name=".activities.SessionDetailActivity" |
| 98 | + android:name=".core.track.session.SessionDetailActivity" |
99 | 99 | android:label="@string/session"
|
100 | 100 | android:theme="@style/AppTheme.NoActionBar"
|
101 | 101 | android:configChanges="orientation|screenSize|keyboardHidden">
|
|
104 | 104 | android:resource="@xml/searchable" />
|
105 | 105 | </activity>
|
106 | 106 | <activity
|
107 |
| - android:name=".activities.SearchActivity" |
| 107 | + android:name=".core.search.SearchActivity" |
108 | 108 | android:launchMode="singleTop"
|
109 | 109 | android:label="Search App">
|
110 | 110 | <intent-filter>
|
|
116 | 116 | </activity>
|
117 | 117 |
|
118 | 118 | <service
|
119 |
| - android:name=".services.BookmarkAlarmService" |
| 119 | + android:name=".core.bookmark.BookmarkAlarmService" |
120 | 120 | android:enabled="true" />
|
121 | 121 |
|
122 |
| - <receiver android:name=".receivers.NotificationAlarmReceiver" /> |
| 122 | + <receiver android:name=".common.notification.NotificationAlarmReceiver" /> |
123 | 123 |
|
124 | 124 | <receiver
|
125 |
| - android:name=".widget.BookmarkWidgetProvider" |
| 125 | + android:name=".core.bookmark.BookmarkWidgetProvider" |
126 | 126 | android:enabled="true"
|
127 | 127 | android:label="Bookmarks">
|
128 | 128 | <intent-filter>
|
|
136 | 136 | </receiver>
|
137 | 137 |
|
138 | 138 | <service
|
139 |
| - android:name=".widget.BookmarkWidgetRemoteViewsService" |
| 139 | + android:name=".core.bookmark.BookmarkWidgetRemoteViewsService" |
140 | 140 | android:enabled="true"
|
141 | 141 | android:exported="false"
|
142 | 142 | android:permission="android.permission.BIND_REMOTEVIEWS" />
|
|
0 commit comments