srctree

Robin Linden parent a40d93a7 9e4cca6a
Update androidx.constraintlayout and fix layout

inlinesplit
atox/src/main/res/layout/nav_header_contact_list.xml added: 5, removed: 9, total 0
@@ -28,10 +28,11 @@
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView android:id="@+id/profileStatusMessage"
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/status_message_default"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@id/statusIndicator"
app:layout_constraintTop_toTopOf="parent"/>
 
<ImageButton android:id="@+id/statusIndicator"
@@ -41,8 +42,6 @@
android:contentDescription="@string/status_indicator"
android:src="@drawable/circle"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="1"
app:layout_constraintLeft_toRightOf="@+id/profileStatusMessage"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>
 
buildSrc/src/main/kotlin/Dependencies.kt added: 5, removed: 9, total 0
@@ -51,10 +51,7 @@ object AndroidX {
}
 
const val appcompat = "androidx.appcompat:appcompat:1.2.0"
// Leaving constraintlayout at 2.0.1 due to versions after that causing layout issues.
// TODO(robinlinden): Work around layout issues. Probably a bug that the behaviour
// broke in a patch version, but oh well, such is life.
const val constraintlayout = "androidx.constraintlayout:constraintlayout:2.0.1"
const val constraintlayout = "androidx.constraintlayout:constraintlayout:2.0.4"
 
object Navigation {
private const val version = "2.3.5"