@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.
- package/android/src/main/java/net/athletic/firebase/realtime/CapacitorFirebaseRealtimePlugin.java +0 -3
- package/ios/Plugin/CapacitorFirebaseRealtimePlugin.swift +0 -2
- package/package.json +1 -1
- package/android/src/main/java/net/athletic/firebase/realtime/CapacitorFirebaseRealtime.java +0 -11
- package/ios/Plugin/CapacitorFirebaseRealtime.swift +0 -8
package/android/src/main/java/net/athletic/firebase/realtime/CapacitorFirebaseRealtimePlugin.java
CHANGED
|
@@ -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