- it was not possible to scroll within the app which made it impossible to use in landscape mode.
- the version was still set to 1.0 even though released as 1.1. bumped to 1.2.
This commit is contained in:
Carl
2025-11-14 17:06:40 +01:00
parent de3ec2d0ee
commit 77afce8d1f
2 changed files with 12 additions and 6 deletions
+2 -2
View File
@@ -10,8 +10,8 @@ android {
applicationId "com.torch.converter"
minSdk 24
targetSdk 34
versionCode 1
versionName "1.0"
versionCode 3
versionName "1.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -1,12 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:background="@color/black">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="24dp"
android:gravity="center"
android:background="@color/black">
android:gravity="top">
<!-- Torch Icon -->
<ImageView
@@ -155,4 +160,5 @@
android:textAlignment="center"
android:textColor="@color/primary_text" />
</LinearLayout>
</LinearLayout>
</ScrollView>