diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-06-29 00:52:44 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-06-29 00:52:44 +0000 |
| commit | ad7215dde641d19c13c1636a6c2b8d35d80a1cc5 (patch) | |
| tree | 9fdc6e3b570ef5087e24af1b246560951b35f66a | |
| parent | 436ce4d83fc28b78c25713126824c551948e511f (diff) | |
fix: add package attribute to AndroidManifest.xml
| -rw-r--r-- | android/app/src/main/AndroidManifest.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index cac3a50..d4ec310 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<manifest xmlns:android="http://schemas.android.com/apk/res/android"> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="org.terst.doot.widget"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
