Show packagename of the app below name

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta
2023-06-20 13:31:13 +05:30
parent 87af312f54
commit f3e2a8e852
2 changed files with 13 additions and 1 deletions

View File

@@ -430,6 +430,7 @@ class AppDetailsActivity : BaseDetailsActivity() {
)
}
txtLine3.text = ("${app.versionName} (${app.versionCode})")
packageName.text = app.packageName
val tags = mutableListOf<String>()
if (app.isFree)

View File

@@ -53,7 +53,7 @@
tools:text="Company Name" />
<TextView
android:id="@+id/txt_line3"
android:id="@+id/packageName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/txt_line2"
@@ -61,6 +61,17 @@
android:layout_alignEnd="@id/txt_line1"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line3"
tools:text="com.aurora.store" />
<TextView
android:id="@+id/txt_line3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/packageName"
android:layout_alignStart="@id/txt_line1"
android:layout_alignEnd="@id/txt_line1"
android:textAlignment="viewStart"
android:textAppearance="@style/TextAppearance.Aurora.Line3"
tools:text="5.8" />
<TextView