update to Jetpack Compose 1.0.2 and related updates

This commit is contained in:
John O'Reilly 2021-09-01 19:25:18 +01:00
parent b9731a486b
commit 9c6ee41ad3
2 changed files with 5 additions and 4 deletions

View file

@ -15,6 +15,7 @@
android:theme="@style/Theme.PeopleInSpace">
<activity
android:name=".ui.MainActivity"
android:exported="true"
android:theme="@style/Theme.PeopleInSpace.NoActionBar"
android:label="@string/app_name">
<intent-filter>

View file

@ -1,6 +1,6 @@
object Versions {
const val androidMinSdk = 21
const val androidCompileSdk = 30
const val androidCompileSdk = 31
const val androidTargetSdk = androidCompileSdk
const val kotlin = "1.5.21"
@ -11,10 +11,10 @@ object Versions {
const val kotlinxSerialization = "1.2.2"
const val kotlinxHtmlJs = "0.7.3"
const val compose = "1.0.1"
const val compose = "1.0.2"
const val wearCompose = "1.0.0-alpha03"
const val navCompose = "2.4.0-alpha06"
const val accompanist = "0.16.0"
const val navCompose = "2.4.0-alpha08"
const val accompanist = "0.17.0"
const val junit = "4.12"
const val mockito = "3.11.2"