update hashmap

This commit is contained in:
lampaa 2018-05-28 17:11:14 +03:00
parent f3ac68a15c
commit 4b5245b6b1
4 changed files with 4 additions and 5 deletions

View File

@ -4,7 +4,7 @@
Phonegap plugin for check or launch other application, get extras in phonegap app.
Last version 6.1.3
Last version 6.1.5
* Add support java 1.7
* Add full support activityForResult, sendBroadcast and RegisterReceiver.
* Add types of extras.

View File

@ -1,6 +1,6 @@
{
"name": "com.lampa.startapp",
"version": "6.1.4",
"version": "6.1.5",
"description": "Phonegap plugin for check or launch other application in android device.",
"cordova": {
"id": "com.lampa.startapp",

View File

@ -2,7 +2,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.lampa.startapp"
version="6.1.4">
version="6.1.5">
<name>startApp</name>
<description>Phonegap plugin for check or launch other application in android device.</description>

View File

@ -27,7 +27,7 @@ import android.net.Uri;
import android.os.Bundle;
public class startApp extends Assets {
private HashMap<Integer, BroadcastReceiver> broadcastReceiverHashMap = new HashMap<>();
private HashMap<Integer, BroadcastReceiver> broadcastReceiverHashMap = new HashMap<Integer, BroadcastReceiver>();
private CallbackContext callbackContext;
/**
* Executes the request and returns PluginResult.
@ -264,7 +264,6 @@ public class startApp extends Assets {
/**
* launch intent
*/
PluginResult pluginResult = new PluginResult(PluginResult.Status.OK);
pluginResult.setKeepCallback(true);