capacitor-rfid-plugin-ox 0.0.5 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,18 @@
1
+ package uz.ox.plugins.rfid;
2
+
3
+ import android.os.Bundle;
4
+ import android.util.Log;
5
+
6
+ import com.getcapacitor.BridgeActivity;
7
+
8
+ public class MainActivity extends BridgeActivity {
9
+
10
+ public static final String TAG = "MainActivity";
11
+ @Override
12
+ public void onCreate(Bundle savedInstanceState) {
13
+ registerPlugin(RFIDPlugin.class);
14
+ Log.i(TAG, "initRfid() onCreate...");
15
+ super.onCreate(savedInstanceState);
16
+ }
17
+
18
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capacitor-rfid-plugin-ox",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "rfid reader (not ready to use)",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",