@athletic/capacitor-firebase-realtime 0.0.6 → 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.
@@ -38,9 +38,6 @@ Examples here:
38
38
 
39
39
  @CapacitorPlugin(name = "CapacitorFirebaseRealtime")
40
40
  public class CapacitorFirebaseRealtimePlugin extends Plugin {
41
-
42
- // private CapacitorFirebaseRealtime implementation = new CapacitorFirebaseRealtime();
43
-
44
41
  private FirebaseAuth fireAuth;
45
42
  private FirebaseDatabase fireDb;
46
43
  private FirebaseUser currentUser = null;
@@ -10,8 +10,6 @@ import FirebaseDatabase
10
10
  */
11
11
  @objc(CapacitorFirebaseRealtimePlugin)
12
12
  public class CapacitorFirebaseRealtimePlugin: CAPPlugin {
13
- private let implementation = CapacitorFirebaseRealtime()
14
-
15
13
  private var ref: DatabaseReference!
16
14
 
17
15
  override public func load() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@athletic/capacitor-firebase-realtime",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "Capacitor Firebase Realtime plugin",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -1,11 +0,0 @@
1
- package net.athletic.firebase.realtime;
2
-
3
- import android.util.Log;
4
-
5
- public class CapacitorFirebaseRealtime {
6
-
7
- public String echo(String value) {
8
- Log.i("Echo", value);
9
- return value;
10
- }
11
- }
@@ -1,8 +0,0 @@
1
- import Foundation
2
-
3
- @objc public class CapacitorFirebaseRealtime: NSObject {
4
- @objc public func echo(_ value: String) -> String {
5
- print(value)
6
- return value
7
- }
8
- }