@capacitor/app 1.0.6 → 1.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.0.7](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/app@1.0.6...@capacitor/app@1.0.7) (2021-12-08)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **app:** Don't unset App Listeners on removeAllListeners ([#716](https://github.com/ionic-team/capacitor-plugins/issues/716)) ([17f2ee8](https://github.com/ionic-team/capacitor-plugins/commit/17f2ee8743e1366dd74771bdad9829cc5f3891e8))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.0.6](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/app@1.0.5...@capacitor/app@1.0.6) (2021-11-03)
7
18
 
8
19
  **Note:** Version bump only for package @capacitor/app
@@ -58,13 +58,6 @@ public class AppPlugin extends Plugin {
58
58
  getActivity().getOnBackPressedDispatcher().addCallback(getActivity(), callback);
59
59
  }
60
60
 
61
- @Override
62
- @PluginMethod(returnType = PluginMethod.RETURN_NONE)
63
- public void removeAllListeners(PluginCall call) {
64
- super.removeAllListeners(call);
65
- unsetAppListeners();
66
- }
67
-
68
61
  @PluginMethod
69
62
  public void exitApp(PluginCall call) {
70
63
  unsetAppListeners();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/app",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "The App API handles high level App state and events.For example, this API emits events when the app enters and leaves the foreground, handles deeplinks, opens other apps, and manages persisted plugin state.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -79,5 +79,5 @@
79
79
  "publishConfig": {
80
80
  "access": "public"
81
81
  },
82
- "gitHead": "64df93225736e9dfad336562f5e53e5a2243052b"
82
+ "gitHead": "d378c00d51b1c9fb978772906448fa0ec9cb81d0"
83
83
  }