Greetings, I want to implement my own library but I can not overcome this error, thank you. I understand that this is missing but I can not find the jar that contains it or if there is another option, thank you. (i mark it (<<<<<<<<).
B4X:
package anywheresoftware.b4a.objects;
import com.secneo.sdk.Helper; <<<<<<<<<<<<<<<<
import android.app.Application;
import android.content.Context;
import android.util.Log;
public class BaseApplication extends Application{
@Override
protected void attachBaseContext(Context paramContext) {
super.attachBaseContext(paramContext);
Log.i("B4A", "**************************** BaseApplication **************************");
Helper.install(this); <<<<<<<<<<<<<<<<<<<<
}
}