Jesús Orantos
Results
2
comments of
Jesús Orantos
A fast temporal solution its add this line in the AppStarter class of the plugin: if( !className.equals("") ){ //Log.d("Cordova AppStarter", className); Intent serviceIntent = new Intent(); serviceIntent.setClassName(context, packageName + "."...
@smchae In the MainActivity.java. And better than "serviceIntent.getExtras().putBoolean("cdvStartInBackground",true);" in AppStarter, use serviceIntent.putExtra("cdvStartInBackground",true) . Because getExtras can be null. I tested the app just now and works.