Skip to content

Commit

Permalink
fix fastfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Zainrax committed Oct 1, 2024
1 parent 0f03e04 commit 6e8d52a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sidekick/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ platform :android do
gradle(
task: "assemble",
build_type: "Release",
project_dir: "sidekick", # Specify the relative path to your Android project
gradle_path: "sidekick/gradlew", # Specify the path to your gradlew script
properties: {
"android.injected.signing.store.file" => keystore_properties["storeFile"],
"android.injected.signing.store.file" => File.expand_path("~/.android/android-keystore.jks"),
"android.injected.signing.store.password" => keystore_properties["storePassword"],
"android.injected.signing.key.alias" => keystore_properties["keyAlias"],
"android.injected.signing.key.password" => keystore_properties["keyPassword"]
Expand All @@ -31,7 +33,7 @@ platform :android do
# Upload to Google Play
upload_to_play_store(
track: 'alpha',
aab: 'app/build/outputs/bundle/release/app-release.aab',
aab: 'sidekick/app/build/outputs/bundle/release/app-release.aab',
json_key: ENV['GOOGLE_PLAY_JSON_KEY']
)
end
Expand Down

0 comments on commit 6e8d52a

Please sign in to comment.