Skip to content

Commit

Permalink
chore: test new command
Browse files Browse the repository at this point in the history
  • Loading branch information
IT-MikeS committed Aug 7, 2024
1 parent 0301be6 commit 1396527
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion e2e/scripts/RunAndroidTest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ if command -v maestro &> /dev/null; then

sleep 1
echo "Starting AVD ${AVD_NAME}..."
"$ANDROID_HOME/emulator/emulator" -avd "${AVD_NAME}" -gpu auto -noaudio -no-snapshot-load -no-boot-anim ${hw_accel_flag} > /dev/null 2>&1 &
nohup "$ANDROID_HOME/emulator/emulator" -avd "${AVD_NAME}" -gpu auto -noaudio -no-snapshot-load -no-boot-anim ${hw_accel_flag} > /dev/null 2>&1 &

# Wait for the emulator to start (check every 10 seconds)
echo "Waiting for the emulator to start..."
Expand Down
2 changes: 1 addition & 1 deletion example-app/android/app/capacitor.build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
implementation project(':capacitor-app')
implementation project(':capacitor-haptics')
implementation project(':capacitor-keyboard')
implementation project(':capacitor-os-inappbrowser')
implementation project(':capacitor-inappbrowser')
implementation project(':capacitor-status-bar')

}
Expand Down
4 changes: 2 additions & 2 deletions example-app/android/capacitor.settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ project(':capacitor-haptics').projectDir = new File('../node_modules/@capacitor/
include ':capacitor-keyboard'
project(':capacitor-keyboard').projectDir = new File('../node_modules/@capacitor/keyboard/android')

include ':capacitor-os-inappbrowser'
project(':capacitor-os-inappbrowser').projectDir = new File('../node_modules/@capacitor/os-inappbrowser/android')
include ':capacitor-inappbrowser'
project(':capacitor-inappbrowser').projectDir = new File('../node_modules/@capacitor/inappbrowser/android')

include ':capacitor-status-bar'
project(':capacitor-status-bar').projectDir = new File('../node_modules/@capacitor/status-bar/android')

0 comments on commit 1396527

Please sign in to comment.