diff --git a/test-apps/android-test/src/components/layout/AppHeader.vue b/test-apps/android-test/src/components/layout/AppHeader.vue index 6b046c7..ed9fd91 100644 --- a/test-apps/android-test/src/components/layout/AppHeader.vue +++ b/test-apps/android-test/src/components/layout/AppHeader.vue @@ -64,7 +64,8 @@ export default class AppHeader extends Vue { { name: 'Schedule', path: '/schedule', label: 'Schedule', icon: '๐Ÿ“…' }, { name: 'Notifications', path: '/notifications', label: 'Notifications', icon: '๐Ÿ“ฑ' }, { name: 'Status', path: '/status', label: 'Status', icon: '๐Ÿ“Š' }, - { name: 'History', path: '/history', label: 'History', icon: '๐Ÿ“‹' } + { name: 'History', path: '/history', label: 'History', icon: '๐Ÿ“‹' }, + { name: 'Logs', path: '/logs', label: 'Logs', icon: '๐Ÿ“œ' } ] get statusClass(): string { diff --git a/test-apps/android-test/src/index.html b/test-apps/android-test/src/index.html deleted file mode 100644 index 72d51e3..0000000 --- a/test-apps/android-test/src/index.html +++ /dev/null @@ -1,476 +0,0 @@ - - - - - - TimeSafari Daily Notification - Android Test - - - -
-

๐Ÿ“ฑ TimeSafari Daily Notification - Android Test

- -
Ready
- - -
-

๐Ÿ” Permission Management

-
-
- - - -
-
- - -
-

โš™๏ธ Configuration

-
-
- - -
-
- - -
-

๐Ÿ“Š Status Monitoring

-
-
- - -
-
- - -
-

๐Ÿค– Android-Specific Features

-
-
- - - -
-
- - -
-

๐Ÿงช Testing & Debug

-
- - - - -
-
- - -
-

๐Ÿš€ Phase 4: TimeSafari Components

-
- - - - -
-
- - -
-

โฐ Static Daily Reminders

-
- - - - -
-
-

Reminder Configuration

-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- -
-
-
- - -
-

โš ๏ธ Error Handling

-
-
- - -
-

๐Ÿ“ Activity Log

-
- -
-
- - -
- - - - diff --git a/test-apps/android-test/src/router/index.ts b/test-apps/android-test/src/router/index.ts index db91e85..935d8e6 100644 --- a/test-apps/android-test/src/router/index.ts +++ b/test-apps/android-test/src/router/index.ts @@ -54,6 +54,15 @@ const routes: RouteRecordRaw[] = [ requiresAuth: false } }, + { + path: '/logs', + name: 'Logs', + component: () => import('@/views/LogsView.vue'), + meta: { + title: 'Android Logs', + requiresAuth: false + } + }, { path: '/settings', name: 'Settings', diff --git a/test-apps/android-test/src/views/HomeView.vue b/test-apps/android-test/src/views/HomeView.vue index 256dbc1..aeb8e61 100644 --- a/test-apps/android-test/src/views/HomeView.vue +++ b/test-apps/android-test/src/views/HomeView.vue @@ -51,6 +51,12 @@ description="See notification delivery history" @click="navigateToHistory" /> + @@ -163,6 +169,10 @@ export default class HomeView extends Vue { navigateToHistory(): void { this.$router.push('/history') } + + navigateToLogs(): void { + this.$router.push('/logs') + } } diff --git a/test-apps/android-test/src/views/LogsView.vue b/test-apps/android-test/src/views/LogsView.vue new file mode 100644 index 0000000..e2c97db --- /dev/null +++ b/test-apps/android-test/src/views/LogsView.vue @@ -0,0 +1,629 @@ + + + + + + +