Skip to content

Commit

Permalink
Update to Compose SNAPSHOT 6886729 (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbanes committed Oct 6, 2020
1 parent fe5da92 commit 2dbea43
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Expand Up @@ -21,7 +21,7 @@ object Versions {
}

object Libs {
const val androidGradlePlugin = "com.android.tools.build:gradle:4.2.0-alpha12"
const val androidGradlePlugin = "com.android.tools.build:gradle:4.2.0-alpha13"

const val gradleMavenPublishPlugin = "com.vanniktech:gradle-maven-publish-plugin:0.13.0"

Expand Down Expand Up @@ -57,8 +57,8 @@ object Libs {
}

object Compose {
const val snapshot = ""
const val version = "1.0.0-alpha04"
const val snapshot = "6886729"
const val version = "1.0.0-SNAPSHOT"

@JvmStatic
val snapshotUrl: String
Expand Down
Expand Up @@ -20,9 +20,9 @@
package dev.chrisbanes.accompanist.imageloading

import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedTask
import androidx.compose.runtime.Stable
import androidx.compose.runtime.getValue
import androidx.compose.runtime.launchInComposition
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.referentialEqualityPolicy
import androidx.compose.runtime.remember
Expand Down Expand Up @@ -85,7 +85,7 @@ fun <T : Any> ImageLoad(
ImageLoadRequestActor(executeRequest)
}

launchInComposition(requestActor) {
LaunchedTask(requestActor) {
// Launch the Actor
requestActor.run { _, newState ->
// Update the result state
Expand Down

0 comments on commit 2dbea43

Please sign in to comment.