@frontegg/ionic-capacitor 2.0.10 → 2.0.11-alpha.11622486848

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/README.md CHANGED
@@ -54,7 +54,7 @@ from [Frontegg Portal Domain](https://portal.frontegg.com/development/settings/d
54
54
  - Add `{{IOS_BUNDLE_IDENTIFIER}}://{{FRONTEGG_BASE_URL}}/ios/oauth/callback`
55
55
  - Toggle Hosted login method for Android:
56
56
  - Add `{{ANDROID_PACKAGE_NAME}}://{{FRONTEGG_BASE_URL}}/android/oauth/callback` **(without assetlinks)**
57
- - Add `https://{{FRONTEGG_BASE_URL}}/{{ANDROID_PACKAGE_NAME}}/android/oauth/callback` **(required for assetlinks)**
57
+ - Add `Add https://{{FRONTEGG_BASE_URL}}/oauth/account/redirect/android/{{ANDROID_PACKAGE_NAME}}` **(required for assetlinks)**
58
58
  - Add `{{FRONTEGG_BASE_URL}}/oauth/authorize`
59
59
  - Replace `IOS_BUNDLE_IDENTIFIER` with your application identifier
60
60
  - Replace `FRONTEGG_BASE_URL` with your frontegg base url
@@ -264,16 +264,6 @@ android {
264
264
  }
265
265
  ```
266
266
 
267
- ### Add permissions to AndroidManifest.xml
268
-
269
- Add `INTERNET` permission to the app's manifest file.
270
-
271
- ```xml
272
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
273
- <uses-permission android:name="android.permission.INTERNET"/>
274
- <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
275
- ```
276
-
277
267
  ### Config Android AssetLinks
278
268
 
279
269
  Configuring your Android `AssetLinks` is required for Magic Link authentication / Reset Password / Activate Account /
@@ -1,2 +1,5 @@
1
1
  <manifest xmlns:android="http://schemas.android.com/apk/res/android">
2
+ <uses-permission android:name="android.permission.INTERNET"/>
3
+ <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
4
+ <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
2
5
  </manifest>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontegg/ionic-capacitor",
3
- "version": "2.0.10",
3
+ "version": "2.0.11-alpha.11622486848",
4
4
  "description": "Frontegg Ionic Capacitor SDK",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -51,6 +51,11 @@
51
51
  "@frontegg/rest-api": "^3.1.56"
52
52
  },
53
53
  "devDependencies": {
54
+ "@angular-eslint/builder": "^16.0.0",
55
+ "@angular-eslint/eslint-plugin": "^16.0.0",
56
+ "@angular-eslint/eslint-plugin-template": "^16.0.0",
57
+ "@angular-eslint/schematics": "^16.0.0",
58
+ "@angular-eslint/template-parser": "^16.0.0",
54
59
  "@angular/core": ">=14.0.0",
55
60
  "@capacitor/android": "^5.0.0",
56
61
  "@capacitor/core": "^5.0.0",
@@ -65,12 +70,7 @@
65
70
  "rimraf": "^3.0.2",
66
71
  "rollup": "^2.32.0",
67
72
  "swiftlint": "^1.0.1",
68
- "typescript": "~4.1.5",
69
- "@angular-eslint/builder": "^16.0.0",
70
- "@angular-eslint/eslint-plugin": "^16.0.0",
71
- "@angular-eslint/eslint-plugin-template": "^16.0.0",
72
- "@angular-eslint/schematics": "^16.0.0",
73
- "@angular-eslint/template-parser": "^16.0.0"
73
+ "typescript": "~4.1.5"
74
74
  },
75
75
  "peerDependencies": {
76
76
  "@capacitor/core": "^5.0.0"