You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
544 B
10 lines
544 B
1 year ago
|
# From https://github.com/square/retrofit/issues/3751#issuecomment-1192043644
|
||
|
# Keep generic signature of Call, Response (R8 full mode strips signatures from non-kept items).
|
||
|
-keep,allowobfuscation,allowshrinking interface retrofit2.Call
|
||
|
-keep,allowobfuscation,allowshrinking class retrofit2.Response
|
||
|
|
||
|
# With R8 full mode generic signatures are stripped for classes that are not
|
||
|
# kept. Suspend functions are wrapped in continuations where the type argument
|
||
|
# is used.
|
||
|
-keep,allowobfuscation,allowshrinking class kotlin.coroutines.Continuation
|