Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added BackCallback min and max priority #93

Merged
merged 1 commit into from
May 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions back-handler/api/android/back-handler.api
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ public final class com/arkivanov/essenty/backhandler/AndroidBackHandlerKt {
public abstract class com/arkivanov/essenty/backhandler/BackCallback {
public static final field Companion Lcom/arkivanov/essenty/backhandler/BackCallback$Companion;
public static final field PRIORITY_DEFAULT I
public static final field PRIORITY_MAX I
public static final field PRIORITY_MIN I
public fun <init> ()V
public synthetic fun <init> (Z)V
public fun <init> (ZI)V
Expand Down
2 changes: 2 additions & 0 deletions back-handler/api/jvm/back-handler.api
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
public abstract class com/arkivanov/essenty/backhandler/BackCallback {
public static final field Companion Lcom/arkivanov/essenty/backhandler/BackCallback$Companion;
public static final field PRIORITY_DEFAULT I
public static final field PRIORITY_MAX I
public static final field PRIORITY_MIN I
public fun <init> ()V
public synthetic fun <init> (Z)V
public fun <init> (ZI)V
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ abstract class BackCallback(

companion object {
const val PRIORITY_DEFAULT: Int = 0
const val PRIORITY_MIN: Int = Int.MIN_VALUE
const val PRIORITY_MAX: Int = Int.MAX_VALUE
}
}

Expand Down