You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 23, 2021. It is now read-only.
Getting an error when building an application in Android Studio.
command in terminal: make android
copy file Lndmobile.aar to folder android/Lndmobile/
open folder ../mobile/android in Android Studio
start build project
getting an error
error: method start in class Lndmobile cannot be applied to given types;
required: String,Callback,Callback
found: String,LndNativeModule.NativeCallback
reason: actual and formal argument lists differ in length
file: LndNativeModule.java
str: 210
Runnable startLnd = new Runnable() {
@Override
public void run() {
Lndmobile.start(args, new NativeCallback(promise)); // error because function start need 3 params: string, callback, callback
}
};