From adb6a4fd9ec3a23c04d5e4c2ce799448237915c4 Mon Sep 17 00:00:00 2001 From: JustZvan Date: Fri, 6 Feb 2026 13:38:36 +0100 Subject: feat: initial commit --- .../main/res/drawable/ic_launcher_background.xml | 170 +++++++++++++++++++++ .../main/res/drawable/ic_launcher_foreground.xml | 30 ++++ app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml | 6 + app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 6237 bytes .../res/mipmap-hdpi/ic_launcher_background.png | Bin 0 -> 1202 bytes .../res/mipmap-hdpi/ic_launcher_foreground.png | Bin 0 -> 3293 bytes .../res/mipmap-hdpi/ic_launcher_monochrome.png | Bin 0 -> 3293 bytes app/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 3420 bytes .../res/mipmap-mdpi/ic_launcher_background.png | Bin 0 -> 697 bytes .../res/mipmap-mdpi/ic_launcher_foreground.png | Bin 0 -> 1785 bytes .../res/mipmap-mdpi/ic_launcher_monochrome.png | Bin 0 -> 1785 bytes app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 8884 bytes .../res/mipmap-xhdpi/ic_launcher_background.png | Bin 0 -> 1804 bytes .../res/mipmap-xhdpi/ic_launcher_foreground.png | Bin 0 -> 5196 bytes .../res/mipmap-xhdpi/ic_launcher_monochrome.png | Bin 0 -> 5196 bytes app/src/main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 16581 bytes .../res/mipmap-xxhdpi/ic_launcher_background.png | Bin 0 -> 3418 bytes .../res/mipmap-xxhdpi/ic_launcher_foreground.png | Bin 0 -> 9888 bytes .../res/mipmap-xxhdpi/ic_launcher_monochrome.png | Bin 0 -> 9888 bytes app/src/main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 25483 bytes .../res/mipmap-xxxhdpi/ic_launcher_background.png | Bin 0 -> 5425 bytes .../res/mipmap-xxxhdpi/ic_launcher_foreground.png | Bin 0 -> 15621 bytes .../res/mipmap-xxxhdpi/ic_launcher_monochrome.png | Bin 0 -> 15621 bytes app/src/main/res/values-hr/strings.xml | 92 +++++++++++ app/src/main/res/values/colors.xml | 10 ++ app/src/main/res/values/strings.xml | 91 +++++++++++ app/src/main/res/values/themes.xml | 5 + app/src/main/res/xml/accessibility_config.xml | 12 ++ app/src/main/res/xml/backup_rules.xml | 13 ++ app/src/main/res/xml/data_extraction_rules.xml | 19 +++ 30 files changed, 448 insertions(+) create mode 100644 app/src/main/res/drawable/ic_launcher_background.xml create mode 100644 app/src/main/res/drawable/ic_launcher_foreground.xml create mode 100644 app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher_background.png create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher_background.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher_background.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png create mode 100644 app/src/main/res/values-hr/strings.xml create mode 100644 app/src/main/res/values/colors.xml create mode 100644 app/src/main/res/values/strings.xml create mode 100644 app/src/main/res/values/themes.xml create mode 100644 app/src/main/res/xml/accessibility_config.xml create mode 100644 app/src/main/res/xml/backup_rules.xml create mode 100644 app/src/main/res/xml/data_extraction_rules.xml (limited to 'app/src/main/res') diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/drawable/ic_launcher_foreground.xml b/app/src/main/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..345888d --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.png b/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..f1da635 Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_background.png b/app/src/main/res/mipmap-hdpi/ic_launcher_background.png new file mode 100644 index 0000000..12ca48a Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_background.png differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..4eb8bba Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png b/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png new file mode 100644 index 0000000..4eb8bba Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.png b/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..1b4cefd Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_background.png b/app/src/main/res/mipmap-mdpi/ic_launcher_background.png new file mode 100644 index 0000000..3f4e077 Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_background.png differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..467cc9e Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png b/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png new file mode 100644 index 0000000..467cc9e Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..b4645fd Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png b/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png new file mode 100644 index 0000000..d496eae Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..c70fd9e Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png b/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png new file mode 100644 index 0000000..c70fd9e Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..0c84d1c Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png new file mode 100644 index 0000000..4d1ed7c Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..29172dc Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png new file mode 100644 index 0000000..29172dc Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..66c8f86 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png new file mode 100644 index 0000000..9e29d2a Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..6a54dc9 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png new file mode 100644 index 0000000..6a54dc9 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png differ diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml new file mode 100644 index 0000000..ef4b8d8 --- /dev/null +++ b/app/src/main/res/values-hr/strings.xml @@ -0,0 +1,92 @@ + + Buddy + + + Buddy prati poruke u WhatsApp-u, Signalu i SimpleX-u kako bi te zaštitio. Ova usluga čita sadržaj poruka na zaslonu za otkrivanje i prijavu aktivnosti. + Nepoznato + + + WhatsApp + Signal + SimpleX + + + Buddy te čuva 🐶 + Sigurna veza aktivna + Buddy pozadinska veza + + + Povezano + Buddy radi + Povezano + + + Glavni zaslon + + + Postavke + + + Dobrodošli u Buddy + Ova aplikacija mora biti postavljena na telefonu djeteta + Dalje + Natrag + + + Obavijesti + Buddy mora moći čitati obavijesti kako bi spriječio tvoje dijete da radi loše stvari na internetu! + Dopuštenje za obavijesti: %s + Pristup obavijestima (slušatelj): %s + Odobreno + Nije odobreno + Omogućeno + Nije omogućeno + Odobri dopuštenje za obavijesti + Omogući pristup obavijestima + Završi oba koraka gore da nastaviš. + + + Pristupačnost + Buddy treba pristup pristupačnosti kako bi pomogao zaštititi tvoje dijete od štetnog sadržaja + Usluga pristupačnosti: %s + Omogući pristup pristupačnosti + Omogući Buddy uslugu pristupačnosti da nastaviš. + + + Pozadinski rad + Buddy mora raditi u pozadini + Onemogućeno za Buddy + Omogućeno (može zaustaviti Buddy) + Optimizacija baterije: %s + Dozvoli rad u pozadini + Otvori postavke optimizacije baterije + Onemogući optimizaciju baterije za Buddy da završiš postavljanje. + + + Kontakti + Buddy treba pristup kontaktima kako bi pomogao zaštititi tvoje dijete + Dopuštenje za kontakte: %s + Odobri dopuštenje za kontakte + Odobri dopuštenje za kontakte da nastaviš. + + + VPN + Buddy koristi VPN za filtriranje i praćenje prometa. Molimo omogući ga prije prijave. + Aktivan + Nije otkriven + VPN status: %s + Otvori VPN postavke + Omogućio sam VPN + Omogući VPN (ili potvrdi da je omogućen) da nastaviš. + + + Račun + Koristi podatke svog roditeljskog računa da povežeš ovaj uređaj + Prijava + Prijavljujem se… + E-mail + Lozinka + Greška: %s + Uspješno povezano + + diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..f8c6127 --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,10 @@ + + + #FFBB86FC + #FF6200EE + #FF3700B3 + #FF03DAC5 + #FF018786 + #FF000000 + #FFFFFFFF + \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..14b013a --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,91 @@ + + Buddy + + + Buddy monitors messages in WhatsApp, Signal, and SimpleX to help keep you safe. This service reads message content on screen to detect and report activity. + Unknown + + + WhatsApp + Signal + SimpleX + + + Buddy is watching out 🐶 + Secure connection active + Buddy Background Connection + + + Connected + Buddy is running + Connected + + + Main Screen + + + Settings Screen + + + Welcome to Buddy + This app must be set up on the child\'s phone + Next + Back + + + Notifications + Buddy needs to be able to read notifications in order to prevent your child from doing bad stuff on the internet! + Notification permission: %s + Notification access (listener): %s + Granted + Not granted + Enabled + Not enabled + Grant notification permission + Enable notification access + Complete both steps above to continue. + + + Accessibility + Buddy needs accessibility access to help protect your child from harmful content + Accessibility service: %s + Enable accessibility access + Enable Buddy\'s accessibility service to continue. + + + Background + Buddy needs to run in the background + Disabled for Buddy + Enabled (may stop Buddy) + Battery optimization: %s + Allow running in background + Open battery optimization settings + Disable battery optimization for Buddy to finish setup. + + + Contacts + Buddy needs access to contacts to help keep your child safe + Contacts permission: %s + Grant contacts permission + Grant contacts permission to continue. + + + VPN + Buddy uses a VPN to help filter and monitor traffic. Please enable it before logging in. + Active + Not detected + VPN status: %s + Open VPN settings + I enabled the VPN + Enable VPN (or confirm it\'s enabled) to continue. + + + Account + Use your parent account details to link this device + Login + Logging in… + Email + Password + Error: %s + Linked successfully + \ No newline at end of file diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..54de2ae --- /dev/null +++ b/app/src/main/res/values/themes.xml @@ -0,0 +1,5 @@ + + + +