senset-walkie-plugin 1.0.9 → 1.0.10

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "senset-walkie-plugin",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Ivo popis package.json.",
5
5
  "cordova": {
6
6
  "id": "senset-walkie-plugin",
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.9">
4
+ id="senset-walkie" version="1.0.10">
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<CallbackContext> extends CordovaPlugin {
16
+ public class SensetWalkie extends CordovaPlugin {
17
17
 
18
18
  public static String logs = "";
19
19
  public static String logGroup = "";
@@ -58,12 +58,10 @@ public class SensetWalkie<CallbackContext> extends CordovaPlugin {
58
58
  // return false;
59
59
  // }
60
60
  if (action.equals("start")) {
61
- SensetWalkie.logs = "";
62
- Log.i("WALKIEPRINT", "SensetWalkie start success " + userId + ", " + userName + ", " + companyId);
63
- callbackContext.success("SensetWalkie start success" + userId + ", " + userName + ", " + companyId);
61
+ SensetWalkie.debug("SensetWalkie started userId " + userId + ", userName: " + userName + ", companyId: " + companyId);
62
+
64
63
  return true;
65
64
  }
66
- Log.i("WALKIEPRINT", "Unknown method: " + action);
67
65
  callbackContext.error("Unknown method: " + action);
68
66
  SensetWalkie.logs = "";
69
67
  return false;