Skip to content

Commit

Permalink
Fixed issues with JVM api
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristoferAlexander committed Nov 22, 2023
1 parent d58c738 commit be16a68
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 10 deletions.
17 changes: 11 additions & 6 deletions alerts/api/androidLib/alerts.api
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,15 @@ public final class com/splendo/kaluga/alerts/AlertActions$DefaultImpls {
}

public final class com/splendo/kaluga/alerts/AlertPresenter : com/splendo/kaluga/alerts/BaseAlertPresenter, kotlinx/coroutines/CoroutineScope {
public fun <init> (Lcom/splendo/kaluga/alerts/Alert;Lcom/splendo/kaluga/architecture/lifecycle/LifecycleManagerObserver;Lkotlinx/coroutines/CoroutineScope;)V
public synthetic fun <init> (Lcom/splendo/kaluga/alerts/Alert;Lcom/splendo/kaluga/architecture/lifecycle/LifecycleManagerObserver;Lkotlinx/coroutines/CoroutineScope;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun <init> (Lcom/splendo/kaluga/alerts/Alert;Lcom/splendo/kaluga/architecture/lifecycle/LifecycleManagerObserver;Lcom/splendo/kaluga/logging/Logger;Lkotlinx/coroutines/CoroutineScope;)V
public synthetic fun <init> (Lcom/splendo/kaluga/alerts/Alert;Lcom/splendo/kaluga/architecture/lifecycle/LifecycleManagerObserver;Lcom/splendo/kaluga/logging/Logger;Lkotlinx/coroutines/CoroutineScope;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun getCoroutineContext ()Lkotlin/coroutines/CoroutineContext;
}

public final class com/splendo/kaluga/alerts/AlertPresenter$Builder : com/splendo/kaluga/alerts/BaseAlertPresenter$Builder, com/splendo/kaluga/architecture/lifecycle/ActivityLifecycleSubscribable {
public fun <init> ()V
public fun <init> (Lcom/splendo/kaluga/architecture/lifecycle/LifecycleManagerObserver;)V
public synthetic fun <init> (Lcom/splendo/kaluga/architecture/lifecycle/LifecycleManagerObserver;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun <init> (Lcom/splendo/kaluga/architecture/lifecycle/LifecycleManagerObserver;Lcom/splendo/kaluga/logging/Logger;)V
public synthetic fun <init> (Lcom/splendo/kaluga/architecture/lifecycle/LifecycleManagerObserver;Lcom/splendo/kaluga/logging/Logger;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun create (Lcom/splendo/kaluga/alerts/Alert;Lkotlinx/coroutines/CoroutineScope;)Lcom/splendo/kaluga/alerts/AlertPresenter;
public synthetic fun create (Lcom/splendo/kaluga/alerts/Alert;Lkotlinx/coroutines/CoroutineScope;)Lcom/splendo/kaluga/alerts/BaseAlertPresenter;
public fun getManager ()Lcom/splendo/kaluga/architecture/lifecycle/ActivityLifecycleSubscribable$LifecycleManager;
Expand All @@ -126,9 +126,11 @@ public final class com/splendo/kaluga/alerts/AlertsKt {
}

public abstract class com/splendo/kaluga/alerts/BaseAlertPresenter : com/splendo/kaluga/alerts/AlertActions {
public fun <init> (Lcom/splendo/kaluga/alerts/Alert;)V
public static final field Companion Lcom/splendo/kaluga/alerts/BaseAlertPresenter$Companion;
public static final field TAG Ljava/lang/String;
public fun <init> (Lcom/splendo/kaluga/alerts/Alert;Lcom/splendo/kaluga/logging/Logger;)V
public fun dismiss (Z)V
protected abstract fun dismissAlert (Z)V
protected fun dismissAlert (Z)V
public static synthetic fun dismissAlert$default (Lcom/splendo/kaluga/alerts/BaseAlertPresenter;ZILjava/lang/Object;)V
public fun show (ZLkotlin/coroutines/Continuation;)Ljava/lang/Object;
protected abstract fun showAlert (ZLkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function0;)V
Expand All @@ -141,3 +143,6 @@ public abstract class com/splendo/kaluga/alerts/BaseAlertPresenter$Builder : com
public abstract fun create (Lcom/splendo/kaluga/alerts/Alert;Lkotlinx/coroutines/CoroutineScope;)Lcom/splendo/kaluga/alerts/BaseAlertPresenter;
}

public final class com/splendo/kaluga/alerts/BaseAlertPresenter$Companion {
}

13 changes: 9 additions & 4 deletions alerts/api/jvm/alerts.api
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,14 @@ public final class com/splendo/kaluga/alerts/AlertActions$DefaultImpls {
}

public final class com/splendo/kaluga/alerts/AlertPresenter : com/splendo/kaluga/alerts/BaseAlertPresenter {
public fun <init> (Lcom/splendo/kaluga/alerts/Alert;)V
public fun <init> (Lcom/splendo/kaluga/alerts/Alert;Lcom/splendo/kaluga/logging/Logger;)V
public fun dismiss (Z)V
public fun show (ZLkotlin/coroutines/Continuation;)Ljava/lang/Object;
public fun showAsync (ZLkotlin/jvm/functions/Function0;)V
}

public final class com/splendo/kaluga/alerts/AlertPresenter$Builder : com/splendo/kaluga/alerts/BaseAlertPresenter$Builder {
public fun <init> ()V
public fun <init> (Lcom/splendo/kaluga/logging/Logger;)V
public fun create (Lcom/splendo/kaluga/alerts/Alert;Lkotlinx/coroutines/CoroutineScope;)Lcom/splendo/kaluga/alerts/AlertPresenter;
public synthetic fun create (Lcom/splendo/kaluga/alerts/Alert;Lkotlinx/coroutines/CoroutineScope;)Lcom/splendo/kaluga/alerts/BaseAlertPresenter;
}
Expand All @@ -122,9 +122,11 @@ public final class com/splendo/kaluga/alerts/AlertsKt {
}

public abstract class com/splendo/kaluga/alerts/BaseAlertPresenter : com/splendo/kaluga/alerts/AlertActions {
public fun <init> (Lcom/splendo/kaluga/alerts/Alert;)V
public static final field Companion Lcom/splendo/kaluga/alerts/BaseAlertPresenter$Companion;
public static final field TAG Ljava/lang/String;
public fun <init> (Lcom/splendo/kaluga/alerts/Alert;Lcom/splendo/kaluga/logging/Logger;)V
public fun dismiss (Z)V
protected abstract fun dismissAlert (Z)V
protected fun dismissAlert (Z)V
public static synthetic fun dismissAlert$default (Lcom/splendo/kaluga/alerts/BaseAlertPresenter;ZILjava/lang/Object;)V
public fun show (ZLkotlin/coroutines/Continuation;)Ljava/lang/Object;
protected abstract fun showAlert (ZLkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function0;)V
Expand All @@ -137,3 +139,6 @@ public abstract class com/splendo/kaluga/alerts/BaseAlertPresenter$Builder : com
public abstract fun create (Lcom/splendo/kaluga/alerts/Alert;Lkotlinx/coroutines/CoroutineScope;)Lcom/splendo/kaluga/alerts/BaseAlertPresenter;
}

public final class com/splendo/kaluga/alerts/BaseAlertPresenter$Companion {
}

0 comments on commit be16a68

Please sign in to comment.