Skip to content

Commit

Permalink
final changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mlapaglia committed Feb 8, 2024
1 parent e08af17 commit 594a1ef
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId = "com.alphasync"
minSdk = 26
targetSdk = 34
versionCode = 9
versionName = "1.8"
versionCode = 13
versionName = "1.30"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
17 changes: 11 additions & 6 deletions app/src/main/res/layout/activity_ble_scanner.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

<ToggleButton
android:id="@+id/toggleButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_width="139dp"
android:layout_height="82dp"
android:layout_marginEnd="16dp"
android:layout_marginBottom="16dp"
android:text="Show all devices"
Expand All @@ -28,11 +28,16 @@

<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginBottom="30dp"
android:layout_marginEnd="4dp"
android:gravity="center_horizontal"
android:text="Filter Sony Devices"
android:textColor="#00427E"
android:textSize="20sp"
android:layout_marginStart="16dp"
android:layout_marginBottom="40dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/toggleButton" />
app:layout_constraintEnd_toStartOf="@+id/toggleButton"
app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

0 comments on commit 594a1ef

Please sign in to comment.