Implement Google Drive support on iOS + update service docs - #87
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds iOS authentication support for Google Drive and updates the documentation site and README(s) to reflect expanded platform support and new registration guidance for each cloud provider.
Changes:
- Add Google Drive PKCE auth flow on iOS and wire it into the iOS demo app.
- Update service docs (Dropbox/Google Drive/OneDrive) with registration instructions and screenshots; add a new “Vision” doc page.
- Bump library version to
0.7.0and refresh README/docs content accordingly.
Reviewed changes
Copilot reviewed 16 out of 20 changed files in this pull request and generated 10 comments.
Show a summary per file
| File | Description |
|---|---|
| README.md | Updates feature list, support matrix, and installation version. |
| mkdocs.yml | Updates nav to include a new “Vision” page under “Introduction”. |
| library/src/iosMain/kotlin/nl/jacobras/cloudbridge/service/googledrive/authenticate.kt | Adds Google Drive iOS PKCE authenticate entrypoint. |
| library/src/iosMain/kotlin/nl/jacobras/cloudbridge/auth/startWebFlow.kt | Tweaks redirect scheme parsing for iOS web auth session. |
| gradle.properties | Bumps project version to 0.7.0. |
| docs/Vision.md | Adds a dedicated page describing design principles/vision. |
| docs/services/snippets/desktop.md | Minor wording update for desktop auth snippet. |
| docs/services/Overview.md | Updates Google Drive support status and clarifies terminology. |
| docs/services/OneDrive.md | Adds registration guidance and screenshot. |
| docs/services/GoogleDrive.md | Adds iOS auth docs + registration guidance + screenshots. |
| docs/services/Dropbox.md | Adds registration guidance and screenshot. |
| docs/README.md | Updates version and adds warning about token refresh limitations. |
| demo/shared/src/iosMain/kotlin/nl/jacobras/cloudbridge/demo/MainViewController.kt | Adds iOS demo authentication flow for Google Drive. |
| demo/shared/build.gradle.kts | Adds iOS Google Drive client ID BuildConfig entry. |
| demo/iosApp/iosApp.xcodeproj/xcuserdata/jacobras.xcuserdatad/xcschemes/iosApp.xcscheme | Adds an Xcode scheme file under user-specific xcuserdata. |
| demo/iosApp/Configuration/Config.xcconfig | Changes the iOS demo bundle identifier. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implement Google Drive support on iOS + update service docs with guidance on registration.
Fixes #78