-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #171 from PeriodPals/build/authentication/fix-ci-b…
…uild-apk build/authentication/fix-ci-build-apk : Fix secrets not properly applied in CI build apk
- Loading branch information
Showing
7 changed files
with
52 additions
and
23 deletions.
There are no files selected for viewing
This file contains 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 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 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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
.DS_Store | ||
.gradle | ||
/local.properties | ||
/secrets.properties | ||
/build | ||
/captures | ||
.externalNativeBuild | ||
|
This file contains 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 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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
plugins { | ||
alias(libs.plugins.androidApplication) apply false | ||
alias(libs.plugins.jetbrainsKotlinAndroid) apply false | ||
alias(libs.plugins.ktfmt) apply false | ||
kotlin("plugin.serialization") version "2.0.0-RC1" apply false | ||
alias(libs.plugins.compose.compiler) apply false | ||
alias(libs.plugins.androidApplication) apply false | ||
alias(libs.plugins.jetbrainsKotlinAndroid) apply false | ||
alias(libs.plugins.ktfmt) apply false | ||
kotlin("plugin.serialization") version "2.0.0-RC1" apply false | ||
alias(libs.plugins.compose.compiler) apply false | ||
} | ||
|
||
buildscript { dependencies { classpath(libs.secrets.gradle.plugin) } } |
This file contains 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 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 @@ | ||
# This file serves as a template for the secrets.properties file. | ||
# It should be checked into Version Control Systems to provide a structure for the required API keys and client URLs. | ||
# The actual values should be filled in by the CI pipeline using the Secrets Gradle plugin and GitHub Secrets. | ||
POWERSYNC_URL=SAFE_DEFAULT_VALUE_POWERSYNC_URL | ||
SUPABASE_KEY=SAFE_DEFAULT_VALUE_SUPABASE_KEY | ||
SERVICE_KEY=SAFE_DEFAULT_VALUE_SERVICE_KEY | ||
SUPABASE_URL=SAFE_DEFAULT_VALUE_SUPABASE_URL |