- gradle version upgrade

- migrated to AndroidX
 - migrated to Kotlin
 - Content resolver unit test added
 - Upgraded android version to 31
This commit is contained in:
2023-08-22 17:10:41 +01:00
parent 6a90d0bd17
commit 444d1edad5

View File

@@ -1,37 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:tools="http://schemas.android.com/tools">
<com.appttude.h_mal.farmr.arc.CircleView
android:id="@+id/circle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="12dp"
android:layout_gravity="center"/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_gravity="center">
<TextView
android:id="@+id/daysCompleteText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:includeFontPadding="false"
tools:text="83"
android:textColor="#0000ee"
android:textSize="88sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="days completed"
android:includeFontPadding="false"
android:textColor="#0000ee" />
</LinearLayout>
</android.support.constraint.ConstraintLayout>