senset-walkie-plugin 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/plugin.xml +1 -1
- package/src/android/SensetWalkie.java +5 -2
package/package.json
CHANGED
package/plugin.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
3
3
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
4
|
-
id="senset-walkie" version="1.0.
|
4
|
+
id="senset-walkie" version="1.0.4">
|
5
5
|
<name>Senset Walkie Talkie plugin</name>
|
6
6
|
|
7
7
|
<description>Ivo plugin popis.</description>
|
@@ -13,7 +13,7 @@ import android.util.Log;
|
|
13
13
|
import java.text.SimpleDateFormat;
|
14
14
|
import java.util.Calendar;
|
15
15
|
|
16
|
-
public class SensetWalkie extends CordovaPlugin {
|
16
|
+
public class SensetWalkie<CallbackContext> extends CordovaPlugin {
|
17
17
|
|
18
18
|
public static String logs = "";
|
19
19
|
public static String logGroup = "";
|
@@ -58,9 +58,12 @@ public class SensetWalkie extends CordovaPlugin {
|
|
58
58
|
// return false;
|
59
59
|
// }
|
60
60
|
if (action.equals("start")) {
|
61
|
-
|
61
|
+
SensetWalkie.logs = "";
|
62
|
+
Log.i("WALKIEPRINT", "SensetWalkie start success " + userId + ", " + userName + ", " + companyId);
|
63
|
+
callbackContext.success("SensetWalkie start success" + userId + ", " + userName + ", " + companyId);
|
62
64
|
return true;
|
63
65
|
}
|
66
|
+
Log.i("WALKIEPRINT", "Unknown method: " + action);
|
64
67
|
callbackContext.error("Unknown method: " + action);
|
65
68
|
SensetWalkie.logs = "";
|
66
69
|
return false;
|