Examples. ImageViewer. 1.0.0-beta1

This commit is contained in:
Igor Demin
2021-10-25 13:11:20 +03:00
parent a800404be3
commit 6c27a86f1c
4 changed files with 7 additions and 6 deletions

View File

@@ -5,11 +5,11 @@ plugins {
}
android {
compileSdk = 30
compileSdk = 31
defaultConfig {
minSdk = 21
targetSdk = 30
targetSdk = 31
versionCode = 1
versionName = "1.0"
}
@@ -22,5 +22,5 @@ android {
dependencies {
implementation(project(":common"))
implementation("androidx.activity:activity-compose:1.3.0")
implementation("androidx.activity:activity-compose:1.3.1")
}

View File

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

View File

@@ -7,7 +7,7 @@ buildscript {
dependencies {
// __LATEST_COMPOSE_RELEASE_VERSION__
classpath("org.jetbrains.compose:compose-gradle-plugin:0.0.0-master-build413")
classpath("org.jetbrains.compose:compose-gradle-plugin:1.0.0-beta1")
classpath("com.android.tools.build:gradle:4.1.0")
classpath(kotlin("gradle-plugin", version = "1.5.31"))
}

View File

@@ -35,11 +35,11 @@ kotlin {
}
android {
compileSdk = 30
compileSdk = 31
defaultConfig {
minSdk = 21
targetSdk = 30
targetSdk = 31
}
compileOptions {