jetbrains.kotlinx:kotlinx-coroutines-bom:1.6.1 | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1 (c) | | | | | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1 (c) | | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.1 (...
<project path="external/kotlinx.coroutines" name="platform/external/kotlinx.coroutines" groups="pdk" /> <project path="external/kotlinx.metadata" name="platform/external/kotlinx.metadata" groups="pdk" /> <project path="external/kotlinx.serialization" name="platform/external/kotlinx.serialization...
This adds the following coroutine utility functions:awaitDeferred -> like callDeferred but for cotoutines. helpful to run stuff on the main thread from a coroutine awaitLoad -> load resources with progress from coroutineschippmann added 2 commits September 27, 2024 09:35 Add awaitDeferred 4bc...
| | | | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.1 (c) | | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.0 | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.6.0 -> 1.7.10 (*) | | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7...
coroutines.launch import kotlinx.coroutines.withContext import java.util.Random /** * Example showing how to add Line annotations */ class PolylineAnnotationActivity : AppCompatActivity() { private val random = Random() private var polylineAnnotationManager: PolylineAnnotationManager? = null private ...
import kotlinx.coroutines.launch import kotlinx.coroutines.withContext /** * Example showing how to add Symbol annotations */ class PointAnnotationActivity : AppCompatActivity() { private var pointAnnotationManager: PointAnnotationManager? = null private var circleAnnotationManager: CircleAnnotationManager...
basedir}/src/main/kotlin</sourceDir> <sourceDir>\${project.basedir}/src/main/java</sourceDir> </sourceDirs> </configuration> </execution> <execution> <id>test-compile</id> <phase>process-test-sources</phase> <goals> <goal>test-compile</goal> </goals> <configuration> <sourceDirs> <...
Update kotlinx-coroutines-test #2973 Merged dkhalanskyjb self-assigned this on Oct 12, 2021 qwwdfsad closed this as completed in 2e25bae on Nov 22, 2021 yorickhenning pushed a commit to yorickhenning/kotlinx.coroutines that referenced this issue on Jan 28 Update kotlinx-coroutines-...
coroutines.isActive import kotlinx.coroutines.launch /** * Load a raster image to a style using ImageSource and display it on a map as * animated weather data using RasterLayer. */ class AnimatedImageSourceActivity : AppCompatActivity() { @OptIn(MapboxDelicateApi::class) override fun on...
import kotlinx.coroutines.withContext import java.util.Random /** * Example showing how to add Circle annotations */ class CircleAnnotationActivity : AppCompatActivity() { private val random = Random() private var styleIndex: Int = 0 private var slotIndex: Int = 0 private val nextStyle: St...