refactor: rewrite mobile app in Compose and add error handling for wear

This commit is contained in:
2026-06-11 17:32:02 +03:00
parent 59207d3351
commit 19a571ac06
40 changed files with 1003 additions and 608 deletions
+18 -13
View File
@@ -1,28 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Base.Theme.OmniCards">
<activity
android:name=".ShowCardActivity"
android:screenOrientation="portrait"
android:exported="false" />
android:theme="@style/Theme.OmniCards">
<activity
android:name=".EditCardActivity"
android:screenOrientation="portrait"
android:exported="false" />
android:exported="false"
android:label="@string/title_activity_edit_card"
android:theme="@style/Theme.OmniCards" />
<activity
android:name=".AddCardActivity"
android:exported="false"
android:label="@string/title_activity_add_card"
android:theme="@style/Theme.OmniCards" />
<activity
android:name=".ShowCardActivity"
android:exported="false"
android:label="@string/title_activity_show_card"
android:theme="@style/Theme.OmniCards" />
<activity
android:name=".MainActivity"
android:screenOrientation="portrait"
android:exported="true">
android:exported="true"
android:label="@string/app_name"
android:theme="@style/Theme.OmniCards">
<intent-filter>
<action android:name="android.intent.action.MAIN" />