Uh oh!
There was an error while loading. Please reload this page.
ci(shared-core): write a placeholder local.properties before publishing - #1295
Merged
Conversation
Gradle configures every project in the build, so the publish lane tripped on the Android app's secrets plugin and failed before it reached the KMP module. Nothing in this lane compiles the app, so placeholder values are enough.
Uh oh!
There was an error while loading. Please reload this page.
bmc08gt added a commit
that referenced
this pull request
Aug 21, 2026
…esign * origin/code/cash: fix(core): add \ to escape ' in What's (#1298) feat(shared-core): wrap the framework in a Swift target (#1297) chore: update display name entry title/hint (#1296) ci(shared-core): write a placeholder local.properties before publishing (#1295) build(shared-core): publish the XCFramework to flipcash-shared-core-spm (#1294) refactor(build-logic): extract the KMP test-fixture generator into a convention plugin (#1293) build(base58): declare the base58 lint tasks' dependency on generated fixtures (#1292) test(base58): run the vector gate on Kotlin/Native, not just the JVM (#1289) build(codes): declare the kikcode lint tasks' dependency on generated fixtures (#1288) # Conflicts: # apps/flipcash/core/src/main/res/values/strings.xml
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 freeto 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.
The first
Publish SharedCorerun failed before it reached the KMP module: Gradleconfigures every project in the build, and the Android app applies the secrets plugin,
which fails configuration outright when
local.propertiesis missing.This lane only builds
:kmp:shared-core— nothing in it compiles the app or talks toBugsnag, Mixpanel, or Coinbase — so it writes obviously-fake values rather than taking
on the real secrets, mirroring the placeholder handling already in
ci.yml.With this step in place the workflow published
0.1.0end to end: theSharedCore.xcframework.ziprelease asset, the generated
Package.swift, and the0.1.0tag on the commit that references it,all in
code-payments/flipcash-shared-core-spm.