Skip to content

Commit 36105c1

Browse files
committed
Merge branch 'master' into develop
2 parents 3f65e17 + dbb75d8 commit 36105c1

File tree

5 files changed

+12
-2
lines changed

5 files changed

+12
-2
lines changed

docs/composing-suspending-functions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -350,12 +350,12 @@ import kotlinx.coroutines.*
350350
import kotlin.system.*
351351

352352
fun main() = runBlocking<Unit> {
353-
//sampleStart
353+
//sampleStart
354354
val time = measureTimeMillis {
355355
println("The answer is ${concurrentSum()}")
356356
}
357357
println("Completed in $time ms")
358-
//sampleEnd
358+
//sampleEnd
359359
}
360360

361361
suspend fun concurrentSum(): Int = coroutineScope {

kotlinx-coroutines-core/jvm/resources/META-INF/proguard/coroutines.pro

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# ServiceLoader support
22
-keepnames class kotlinx.coroutines.internal.MainDispatcherFactory {}
33
-keepnames class kotlinx.coroutines.CoroutineExceptionHandler {}
4+
-keepnames class kotlinx.coroutines.android.AndroidExceptionPreHandler {}
5+
-keepnames class kotlinx.coroutines.android.AndroidDispatcherFactory {}
46

57
# Most of volatile fields are updated with AFU and should not be mangled
68
-keepclassmembernames class kotlinx.** {

kotlinx-coroutines-test/resources/META-INF/proguard/coroutines.pro

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# ServiceLoader support
22
-keepnames class kotlinx.coroutines.test.internal.TestMainDispatcherFactory {}
3+
-keepnames class kotlinx.coroutines.android.AndroidExceptionPreHandler {}
4+
-keepnames class kotlinx.coroutines.android.AndroidDispatcherFactory {}
35

46
# Most of volatile fields are updated with AFU and should not be mangled
57
-keepclassmembernames class kotlinx.** {
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
-keepnames class kotlinx.coroutines.internal.MainDispatcherFactory {}
22
-keepnames class kotlinx.coroutines.CoroutineExceptionHandler {}
3+
-keepnames class kotlinx.coroutines.android.AndroidExceptionPreHandler {}
4+
-keepnames class kotlinx.coroutines.android.AndroidDispatcherFactory {}
5+
36
-keepclassmembernames class kotlinx.** {
47
volatile <fields>;
58
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
-keepnames class kotlinx.coroutines.internal.MainDispatcherFactory {}
22
-keepnames class kotlinx.coroutines.CoroutineExceptionHandler {}
3+
-keepnames class kotlinx.coroutines.android.AndroidExceptionPreHandler {}
4+
-keepnames class kotlinx.coroutines.android.AndroidDispatcherFactory {}
5+
36
-keepclassmembernames class kotlinx.** {
47
volatile <fields>;
58
}

0 commit comments

Comments
 (0)