- 
 
- 
  Notifications
 You must be signed in to change notification settings 
- Fork 181
Added TvOS, MacOS, iOSX64 support #770
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
 
  Merged
 
 
 
 
 
 +1,429
 
 
 −1,048
 
 
 
 
 
 
 
 
  Merged
 Changes from all commits
 Commits
 
 
 Show all changes
 
 
 36 commits
 
 
 Select commit
 Hold shift + click to select a range
 
 d2ef6ef
 
 Add support for tvOS and update dependencies
 
 
 sajidalidev a3540c3
 
 Add macOS Support and Extend Platform Coverage
 
 
 sajidalidev 673901a
 
 Added iosX64
 
 
 Reedyuk 6e03365
 
 attempt to update github actions
 
 
 Reedyuk a98eaa9
 
 Added Apple target skip
 
 
 Reedyuk a03b31e
 
 Adjusted tvos and macos
 
 
 Reedyuk 807ad5c
 
 Added missing target for macos and adjusted folder name
 
 
 Reedyuk e42bb96
 
 Added skips
 
 
 Reedyuk 69626e5
 
 Added missing macos check
 
 
 Reedyuk 905aca0
 
 hardcoded 16.4 xcode
 
 
 Reedyuk 3b30f61
 
 Adjusted test matrix
 
 
 Reedyuk cbe0a09
 
 Adjusted test matrix
 
 
 Reedyuk 1bc76a4
 
 Added platform types to projects.
 
 
 Reedyuk 7dfa2c5
 
 Added check on plugins
 
 
 Reedyuk 8e0c72b
 
 adjusted check on plugins
 
 
 Reedyuk 345dd08
 
 Added platform filtering for test utils
 
 
 Reedyuk 9cc1ae4
 
 Added platform filtering for test utils
 
 
 Reedyuk 5c7cf41
 
 Adjusted emulator matrix.
 
 
 Reedyuk 485c7e1
 
 Adjusted emulator matrix.
 
 
 Reedyuk 7cbffda
 
 Updated Xcode version to 16.2 in CI configuration files and adjusted ...
 
 
 Reedyuk aa8b3ab
 
 Added fix for firebase storage
 
 
 Reedyuk c200a85
 
 Adjusted to xcode 16.4
 
 
 Reedyuk 2c6cb39
 
 bumped kotlin
 
 
 Reedyuk 820beb3
 
 Added ability to skip test targets
 
 
 Reedyuk 4820435
 
 Adjusted tests.
 
 
 Reedyuk 1540ac6
 
 Update firebase-database/build.gradle.kts
 
 
 Reedyuk edd653b
 
 Update firebase-auth/build.gradle.kts
 
 
 Reedyuk 0b97795
 
 Update firebase-auth/build.gradle.kts
 
 
 Reedyuk 956a834
 
 Update firebase-auth/build.gradle.kts
 
 
 Reedyuk 15b8926
 
 Removed keychain function for macos
 
 
 Reedyuk 5ca6d61
 
 Removed keychain function for tvos
 
 
 Reedyuk f4ede04
 
 not needed for ios arm64
 
 
 Reedyuk c0b22f7
 
 osx not macos
 
 
 Reedyuk bf1b064
 
 Adjusted for error message on opt in
 
 
 Reedyuk 6656377
 
 Added more opt in
 
 
 Reedyuk 4f719df
 
 removed firebase auth for macos.
 
 
 Reedyuk File filter
Filter by extension
Conversations
 Failed to load comments. 
 
 
 
  Loading
 
 Jump to
 
 Jump to file
 
 
 
 Failed to load files. 
 
 
 
  Loading
 
 Diff view
Diff view
There are no files selected for viewing
 
 
 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
 
 
 
 
 
 
 
 
 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
 
 
 
 
 
 
 
 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
 
 
 
 
 
 
 
 
 7 changes: 7 additions & 0 deletions
 
 
 
 buildSrc/build.gradle.kts
 
 
 
 
  
 
 
 
 
 
 
 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
 
 
 
 
 | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| plugins { | ||
| `kotlin-dsl` | ||
| } | ||
|  | ||
| repositories { | ||
| gradlePluginPortal() | ||
| } | 
 
 
 
 22 changes: 22 additions & 0 deletions
 
 
 
 buildSrc/src/main/kotlin/Utils.kt
 
 
 
 
  
 
 
 
 
 
 
 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
 
 
 
 
 | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| package utils | ||
|  | ||
| enum class TargetPlatform { | ||
| Android, Ios, Macos, Tvos, Jvm, Js | ||
| } | ||
|  | ||
| fun String.toTargetPlatforms(): List<TargetPlatform> = | ||
| split(",").map { | ||
| when (it.lowercase().trim()) { | ||
| "android" -> TargetPlatform.Android | ||
| "ios" -> TargetPlatform.Ios | ||
| "macos" -> TargetPlatform.Macos | ||
| "tvos" -> TargetPlatform.Tvos | ||
| "jvm" -> TargetPlatform.Jvm | ||
| "js" -> TargetPlatform.Js | ||
| else -> throw IllegalArgumentException("Unknown target platform: $it") | ||
| } | ||
| } | ||
|  | ||
| fun List<TargetPlatform>.supportsApple() = this.any { | ||
| it == TargetPlatform.Ios || it == TargetPlatform.Macos || it == TargetPlatform.Tvos | ||
| } | 
 
 
 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
 
 
 
 
 
 
 Oops, something went wrong.
 
 
 
 
 Oops, something went wrong.
 
 
 
 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.