Skip to content Skip to sidebar Skip to footer

Akka. Android. Nosuchmethodexception:

When I am running application that uses Akka on Android I receive the following exception: 04-29 16:13:06.235: E/AndroidRuntime(8968): java.lang.RuntimeException: Unable to start a

Solution 1:

Expanding on mttdbrd's answer... For those confused how to actually get rid of this warning add the following to your proguard:

-keepclasseswithmembers class * {
    public <init>(com.typesafe.config.Config, akka.event.LoggingAdapter, java.util.concurrent.ThreadFactory);
}

Solution 2:

One of your constructors with the following signature is not public or doesn't exist:

MyActivity (com.typesafe.config.Config, akka.event.LoggingAdapter, java.util.concurrent.ThreadFactory)

Post a Comment for "Akka. Android. Nosuchmethodexception: "