mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-07-28 07:25:49 +00:00
a294aa1a6b
Security hardened release: - Code obfuscation enabled (minifyEnabled=true, shrinkResources=true) - Sensitive files excluded (google-services.json, keystores) - Branch.io key moved to BuildConfig placeholder - Updated dependencies: OkHttp 4.12.0, Gson 2.10.1, BouncyCastle 1.77 - Comprehensive ProGuard rules for crypto wallet - Navigation 2.7.7, Lifecycle 2.7.0, ConstraintLayout 2.1.4
43 lines
1.6 KiB
XML
43 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/addressActionsContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="4dp"
|
|
tools:background="@color/bottom_sheet_background">
|
|
|
|
<View
|
|
style="@style/Widget.Nova.Puller"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="16dp"
|
|
android:layout_marginTop="6dp" />
|
|
|
|
<io.novafoundation.nova.common.view.ChipLabelView
|
|
android:id="@+id/addressActionsScheme"
|
|
tools:text="Substrate Address"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="16dp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/addressActionsIcon"
|
|
style="@style/Widget.Nova.Icon.Big"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="16dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/addressActionsValue"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="84dp"
|
|
android:layout_marginEnd="84dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:gravity="center_horizontal"
|
|
android:textColor="@color/text_secondary"
|
|
tools:text="P15cfSaBcTxNr8rV59cbhdMNCRagFr3GE6B3zZRsCp4QHHKPu" />
|
|
|
|
</LinearLayout> |