* Merge pull request #11 from wecand0/fdroid

внедрение detection engine и модульной архитектуры детектирования VPN

* Feature/UI polish and readme (#12)

* add icon file

* update readme

---------

Co-authored-by: cherepavel <frasyn.pashka@gmail.com>

* Remove background monitoring (#13)

* убрано фоновое отслеживание, приложение переведено на manual refresh

* minor fix

---------

Co-authored-by: cherepavel <frasyn.pashka@gmail.com>

* Split native details UI (#14)

* убрал монолитный activity_main.xml, разделил на куски

* upd

* текст из ReportFormatter перенесен в strings.xml

* add version and build

* добавлена версия и билд в тектовый репорт

---------

Co-authored-by: cherepavel <frasyn.pashka@gmail.com>

* update gitignore

---------

Co-authored-by: Vadim <shorinvadim1@gmail.com>
Co-authored-by: cherepavel <frasyn.pashka@gmail.com>
This commit is contained in:
Pavel Frasyn 2026-04-09 20:02:55 +03:00 committed by GitHub
parent 702874ca79
commit 1c75bb098b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
69 changed files with 3460 additions and 1597 deletions

View file

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:id="@+id/cardJavaSection"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="12dp"
android:background="@drawable/bg_card_surface"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Java interface enumeration"
android:textColor="?attr/appColorOnSurface"
android:textSize="16sp"
android:textStyle="bold" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:text="Supplementary signal from Java networking APIs"
android:textColor="?attr/appColorOnSurfaceMuted"
android:textSize="12sp" />
<include
android:id="@+id/cardJavaSignal"
layout="@layout/common_item_signal_card_full" />
</LinearLayout>
</merge>