senset-walkie-plugin 1.0.2 → 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 +5 -5
- 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>
|
@@ -15,13 +15,13 @@
|
|
15
15
|
<engine name="cordova" version=">=3.0.0"/>
|
16
16
|
</engines>
|
17
17
|
|
18
|
-
<js-module src="www/senset-walkie-plugin.js" name="
|
19
|
-
<clobbers target="window.plugins.
|
18
|
+
<js-module src="www/senset-walkie-plugin.js" name="SensetWalkie">
|
19
|
+
<clobbers target="window.plugins.SensetWalkie" />
|
20
20
|
</js-module>
|
21
21
|
<platform name="android">
|
22
22
|
<config-file target="res/xml/config.xml" parent="/*">
|
23
|
-
<feature name="
|
24
|
-
<param name="android-package" value="sk.senset.cordova.plugin.
|
23
|
+
<feature name="SensetWalkie">
|
24
|
+
<param name="android-package" value="sk.senset.cordova.plugin.SensetWalkie"/>
|
25
25
|
</feature>
|
26
26
|
</config-file>
|
27
27
|
|
@@ -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;
|