capacitor-oidc 0.0.1-alpha.0

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.
Files changed (44) hide show
  1. package/CapacitorOidc.podspec +17 -0
  2. package/LICENSE +201 -0
  3. package/Package.swift +28 -0
  4. package/README.md +122 -0
  5. package/android/build.gradle +75 -0
  6. package/android/src/main/AndroidManifest.xml +1 -0
  7. package/android/src/main/java/com/jojopirker/capacitor/oidc/CallbackUriMatcher.java +22 -0
  8. package/android/src/main/java/com/jojopirker/capacitor/oidc/CapacitorOidcPlugin.java +240 -0
  9. package/android/src/main/java/com/jojopirker/capacitor/oidc/NativeContract.java +35 -0
  10. package/android/src/main/java/com/jojopirker/capacitor/oidc/StoredSessionV1.java +111 -0
  11. package/android/src/main/java/com/jojopirker/capacitor/oidc/TokenVault.java +209 -0
  12. package/android/src/main/java/com/jojopirker/capacitor/oidc/VaultEntryCodec.java +56 -0
  13. package/dist/esm/capacitor-navigator.d.ts +14 -0
  14. package/dist/esm/capacitor-navigator.js +68 -0
  15. package/dist/esm/capacitor-navigator.js.map +1 -0
  16. package/dist/esm/capacitor-secure-state-store.d.ts +9 -0
  17. package/dist/esm/capacitor-secure-state-store.js +36 -0
  18. package/dist/esm/capacitor-secure-state-store.js.map +1 -0
  19. package/dist/esm/capacitor-user-manager.d.ts +28 -0
  20. package/dist/esm/capacitor-user-manager.js +160 -0
  21. package/dist/esm/capacitor-user-manager.js.map +1 -0
  22. package/dist/esm/definitions.d.ts +62 -0
  23. package/dist/esm/definitions.js +2 -0
  24. package/dist/esm/definitions.js.map +1 -0
  25. package/dist/esm/errors.d.ts +6 -0
  26. package/dist/esm/errors.js +13 -0
  27. package/dist/esm/errors.js.map +1 -0
  28. package/dist/esm/generated/native-contract.d.ts +37 -0
  29. package/dist/esm/generated/native-contract.js +38 -0
  30. package/dist/esm/generated/native-contract.js.map +1 -0
  31. package/dist/esm/index.d.ts +5 -0
  32. package/dist/esm/index.js +5 -0
  33. package/dist/esm/index.js.map +1 -0
  34. package/dist/esm/native.d.ts +2 -0
  35. package/dist/esm/native.js +4 -0
  36. package/dist/esm/native.js.map +1 -0
  37. package/dist/plugin.cjs +304 -0
  38. package/dist/plugin.cjs.map +1 -0
  39. package/ios/Sources/CapacitorOidcPlugin/CapacitorOidcPlugin.swift +177 -0
  40. package/ios/Sources/CapacitorOidcPlugin/NativeContract.generated.swift +39 -0
  41. package/ios/Sources/CapacitorOidcPlugin/StoredSessionV1.swift +35 -0
  42. package/ios/Sources/CapacitorOidcPlugin/TokenVault.swift +132 -0
  43. package/ios/Tests/CapacitorOidcPluginTests/StoredSessionV1Tests.swift +38 -0
  44. package/package.json +85 -0
@@ -0,0 +1,17 @@
1
+ require 'json'
2
+
3
+ package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
4
+
5
+ Pod::Spec.new do |spec|
6
+ spec.name = 'CapacitorOidc'
7
+ spec.version = package['version']
8
+ spec.summary = package['description']
9
+ spec.license = package['license']
10
+ spec.homepage = package['homepage']
11
+ spec.author = package['author']
12
+ spec.source = { git: package['repository']['url'], tag: spec.version.to_s }
13
+ spec.source_files = 'ios/Sources/**/*.{swift,h,m,c,cc,mm,cpp}'
14
+ spec.ios.deployment_target = '15.0'
15
+ spec.dependency 'Capacitor'
16
+ spec.swift_version = '5.9'
17
+ end
package/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2026 Jojo Pirker
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
package/Package.swift ADDED
@@ -0,0 +1,28 @@
1
+ // swift-tools-version: 5.9
2
+ import PackageDescription
3
+
4
+ let package = Package(
5
+ name: "CapacitorOidc",
6
+ platforms: [.iOS(.v15)],
7
+ products: [
8
+ .library(name: "CapacitorOidc", targets: ["CapacitorOidcPlugin"])
9
+ ],
10
+ dependencies: [
11
+ .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.0")
12
+ ],
13
+ targets: [
14
+ .target(
15
+ name: "CapacitorOidcPlugin",
16
+ dependencies: [
17
+ .product(name: "Capacitor", package: "capacitor-swift-pm"),
18
+ .product(name: "Cordova", package: "capacitor-swift-pm")
19
+ ],
20
+ path: "ios/Sources/CapacitorOidcPlugin"
21
+ ),
22
+ .testTarget(
23
+ name: "CapacitorOidcPluginTests",
24
+ dependencies: ["CapacitorOidcPlugin"],
25
+ path: "ios/Tests/CapacitorOidcPluginTests"
26
+ )
27
+ ]
28
+ )
package/README.md ADDED
@@ -0,0 +1,122 @@
1
+ # capacitor-oidc
2
+
3
+ A small native Capacitor adapter for [`oidc-client-ts`](https://github.com/authts/oidc-client-ts).
4
+
5
+ > [!WARNING]
6
+ > This package is not ready for production use. `oidc-client-ts` 3.5.0 does not validate the required ID-token `iss`, `aud`, and `exp` claims. See [Security](SECURITY.md).
7
+
8
+ The package keeps OAuth and OpenID Connect in `oidc-client-ts`. Its native code only presents system authentication UI and stores state securely:
9
+
10
+ - iOS: `ASWebAuthenticationSession` and Keychain.
11
+ - Android: Auth Tab with its Custom Tab fallback, plus AES-GCM protected storage with a key held by Android Keystore.
12
+ - TypeScript: a native `INavigator`, secure `StateStore`, foreground refresh serialization, and a resume check.
13
+
14
+ It does not patch `fetch`, add native OIDC networking, accept client secrets, render authentication in a WebView, or implement iframe renewal.
15
+
16
+ ## Install
17
+
18
+ ```sh
19
+ npm install capacitor-oidc oidc-client-ts @capacitor/app
20
+ npx cap sync
21
+ ```
22
+
23
+ All discovery, token, refresh, UserInfo, and revocation requests use normal WebView `fetch`. The provider must allow the app's configured Capacitor origin through CORS.
24
+
25
+ Authorization and logout endpoints must use HTTPS. Plain HTTP is accepted only for loopback local development.
26
+
27
+ ## Usage
28
+
29
+ ```ts
30
+ import { CapacitorUserManager } from 'capacitor-oidc';
31
+
32
+ const manager = await CapacitorUserManager.create(
33
+ {
34
+ authority: 'https://identity.example.com',
35
+ client_id: 'mobile-app',
36
+ redirect_uri: 'com.example.app:/callback',
37
+ post_logout_redirect_uri: 'com.example.app:/logout-callback',
38
+ scope: 'openid profile offline_access',
39
+ automaticSilentRenew: true,
40
+ revokeTokensOnSignout: true,
41
+ },
42
+ {
43
+ storageNamespace: 'primary',
44
+ ios: {
45
+ keychainAccessGroup: 'TEAMID.group.com.example.app',
46
+ keychainAccessibility: 'afterFirstUnlockThisDeviceOnly',
47
+ prefersEphemeralWebBrowserSession: false,
48
+ },
49
+ },
50
+ );
51
+
52
+ const user = await manager.signin();
53
+ const validUser = await manager.getValidUser(30);
54
+ await manager.signout();
55
+ await manager.dispose();
56
+ ```
57
+
58
+ `automaticSilentRenew` uses `oidc-client-ts`'s foreground expiry timer. Native silent renewal uses a refresh token only and never falls back to an iframe. Concurrent renewal triggers share one request. Returning to the foreground calls `getValidUser()` so a token that expired while the app was suspended is refreshed.
59
+
60
+ The operating system can suspend or terminate the app, so exact background refresh timing is not promised.
61
+
62
+ ## Redirect setup
63
+
64
+ Register the redirect URI as a native public-client redirect at the provider. Never put a client secret in the app.
65
+
66
+ For an iOS custom scheme, add it to the application target's `CFBundleURLTypes`. HTTPS callbacks through `ASWebAuthenticationSession` require iOS 17.4 or newer and the appropriate Associated Domains configuration.
67
+
68
+ For Android custom-scheme fallback, add an intent filter to the app's `BridgeActivity`. HTTPS callbacks require a verified App Link and Digital Asset Links. Auth Tab handles the result directly when the installed browser supports it; its intent is intentionally compatible with Custom Tabs on older browsers.
69
+
70
+ Calling `cancel()` on Android rejects the pending JavaScript promise, but Android does not provide an API to forcibly close an already-open system Auth Tab or Custom Tab. Ephemeral browsing is a request to the installed browser and may be ignored by a fallback browser.
71
+
72
+ ## Secure storage and widgets
73
+
74
+ `userStore` and transaction `stateStore` are separate secure namespaces. Each successful user write also updates a versioned native `StoredSessionV1` snapshot. The snapshot is an eventually consistent widget cache, not the canonical OIDC session.
75
+
76
+ An iOS app and WidgetKit extension can construct the public `TokenVault` with the same Keychain access group:
77
+
78
+ ```swift
79
+ let vault = TokenVault(accessGroup: "TEAMID.group.com.example.app")
80
+ let session = try vault.loadSession(namespace: "primary")
81
+ ```
82
+
83
+ Replace `TEAMID` with the Apple Developer Team ID. Both targets must carry the same
84
+ Keychain Sharing entitlement, normally declared as
85
+ `$(AppIdentifierPrefix)group.com.example.app`; the runtime option uses its expanded
86
+ `TEAMID.group.com.example.app` value. The default accessibility is
87
+ `AfterFirstUnlockThisDeviceOnly`; Keychain synchronization and biometric gating are disabled.
88
+
89
+ An Android app widget in the same package can use the public native vault:
90
+
91
+ ```java
92
+ TokenVault vault = new TokenVault(context);
93
+ StoredSessionV1 session = vault.loadSession("primary");
94
+ ```
95
+
96
+ Widgets may read the current session. Autonomous native refresh is deliberately not implemented.
97
+
98
+ ## Logout behavior
99
+
100
+ `signout()` uses the provider's end-session endpoint in the same native authentication UI. If `revokeTokensOnSignout` is enabled, upstream revocation runs before local state is cleared. A revocation failure therefore preserves the local session and its renewal timer; after revocation succeeds, a later browser or callback failure leaves the app locally signed out. Removing the user cancels its expiry timer without disabling renewal for a later sign-in with the same manager.
101
+
102
+ ## Unsupported APIs
103
+
104
+ Use `signin()` and `signout()` for interactive flows. Redirect navigation, iframe logout, and browser session monitoring reject with `UNSUPPORTED_RUNTIME`. Resource Owner Password Credentials, DPoP, client secrets, exact background scheduling, and autonomous widget refresh are outside v1.
105
+
106
+ Only one interactive native authentication session and one configured manager are supported at a time.
107
+
108
+ ## Development
109
+
110
+ ```sh
111
+ npm run verify
112
+ npm run verify:ios
113
+ npm run verify:android
114
+ ```
115
+
116
+ Physical-device verification remains required for Web Crypto, system consent UI, redirects, and shared widget access before a production release. See [Testing](docs/TESTING.md) for the full matrix.
117
+
118
+ See [Publishing](docs/PUBLISHING.md) for the guarded npm trusted-publishing setup and release process.
119
+
120
+ ## License
121
+
122
+ Apache-2.0
@@ -0,0 +1,75 @@
1
+ ext {
2
+ capacitorVersion = System.getenv('CAPACITOR_VERSION')
3
+ compileSdkVersion = project.hasProperty('compileSdkVersion') ? project.property('compileSdkVersion').toString().toInteger() : 36
4
+ minSdkVersion = project.hasProperty('minSdkVersion') && project.property('minSdkVersion') != null ? project.property('minSdkVersion').toString().toInteger() : 24
5
+ targetSdkVersion = project.hasProperty('targetSdkVersion') ? project.property('targetSdkVersion').toString().toInteger() : 36
6
+ androidxActivityVersion = project.hasProperty('androidxActivityVersion') ? rootProject.ext.androidxActivityVersion : '1.11.0'
7
+ androidxBrowserVersion = project.hasProperty('androidxBrowserVersion') ? rootProject.ext.androidxBrowserVersion : '1.10.0'
8
+ junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.2'
9
+ }
10
+
11
+ buildscript {
12
+ repositories {
13
+ google()
14
+ mavenCentral()
15
+ }
16
+ dependencies {
17
+ classpath 'com.android.tools.build:gradle:8.13.0'
18
+ }
19
+ }
20
+
21
+ apply plugin: 'com.android.library'
22
+
23
+ android {
24
+ namespace = "com.jojopirker.capacitor.oidc"
25
+ compileSdk = rootProject.ext.compileSdkVersion
26
+
27
+ defaultConfig {
28
+ minSdkVersion rootProject.ext.minSdkVersion
29
+ targetSdkVersion rootProject.ext.targetSdkVersion
30
+ versionCode 1
31
+ versionName "1.0"
32
+ }
33
+
34
+ buildTypes {
35
+ release {
36
+ minifyEnabled false
37
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
38
+ }
39
+ }
40
+
41
+ compileOptions {
42
+ sourceCompatibility JavaVersion.VERSION_21
43
+ targetCompatibility JavaVersion.VERSION_21
44
+ }
45
+
46
+ testOptions {
47
+ unitTests.all {
48
+ systemProperty 'storedSessionFixture', file('../contracts/fixtures/stored-session-v1.json').absolutePath
49
+ }
50
+ }
51
+
52
+ publishing {
53
+ singleVariant("release")
54
+ }
55
+ }
56
+
57
+ repositories {
58
+ google()
59
+ mavenCentral()
60
+ }
61
+
62
+ dependencies {
63
+ implementation fileTree(dir: 'libs', include: ['*.jar'])
64
+
65
+ if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") {
66
+ implementation "com.capacitorjs:core:$capacitorVersion"
67
+ } else {
68
+ implementation project(':capacitor-android')
69
+ }
70
+
71
+ implementation "androidx.activity:activity:$androidxActivityVersion"
72
+ implementation "androidx.browser:browser:$androidxBrowserVersion"
73
+ testImplementation "junit:junit:$junitVersion"
74
+ testImplementation "org.json:json:20250517"
75
+ }
@@ -0,0 +1 @@
1
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android" />
@@ -0,0 +1,22 @@
1
+ package com.jojopirker.capacitor.oidc;
2
+
3
+ import android.net.Uri;
4
+
5
+ final class CallbackUriMatcher {
6
+
7
+ private CallbackUriMatcher() {}
8
+
9
+ static boolean matches(Uri actual, Uri expected) {
10
+ return equalIgnoringCase(actual.getScheme(), expected.getScheme()) &&
11
+ equalIgnoringCase(actual.getEncodedAuthority(), expected.getEncodedAuthority()) &&
12
+ equal(actual.getEncodedPath(), expected.getEncodedPath());
13
+ }
14
+
15
+ private static boolean equal(String left, String right) {
16
+ return left == null ? right == null : left.equals(right);
17
+ }
18
+
19
+ private static boolean equalIgnoringCase(String left, String right) {
20
+ return left == null ? right == null : left.equalsIgnoreCase(right);
21
+ }
22
+ }