Skip to content

Commit 39d1997

Browse files
chore: check ruby file and fix file path of index
1 parent fa8eb3b commit 39d1997

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.circleci/config.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,17 @@ jobs:
173173
name: Install Maestro
174174
command: npm run maestro:install
175175
- run:
176-
name: Set Ruby Version
177-
command: rbenv global 3.3.5 && rbenv rehash
176+
name: Set Ruby Version
177+
command: |
178+
# Check available Ruby versions
179+
rbenv versions
180+
# Try to install Ruby 3.3.5 if not available
181+
rbenv install 3.3.5 || true
182+
# Set global Ruby version
183+
rbenv global 3.3.5
184+
rbenv rehash
185+
# Verify Ruby version
186+
ruby --version
178187
179188
- restore_cache:
180189
keys:

example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ react {
4242
// bundleAssetName = "MyApplication.android.bundle"
4343
//
4444
// The entry file for bundle generation. Default is 'index.android.js' or 'index.js'
45-
entryFile = file("index.tsx")
45+
entryFile = file("../../index.tsx")
4646
//
4747
// A list of extra flags to pass to the 'bundle' commands.
4848
// See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle

0 commit comments

Comments
 (0)