これはAndroidのプラグインであり、メソッドの1つにコンテキストが必要です。このコンテキストを取得する方法はありますか?
public class GaziruPlugin extends CordovaPlugin{
@Override
public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException
{
String value = args.getString(0);
BASE64Decoder decoder = new BASE64Decoder();
try {
byte[] imageByte = decoder.decodeBuffer(value);
Classlogic method = new Classlogic();
//this method requires a context type.
method.DoLogic(context,imageByte);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return false;
}
}
助けていただければ幸いです。ありがとう
これをプラグインに入れてみてください:
Context context=this.cordova.getActivity().getApplicationContext();