Skip to content

Commit 421f4e2

Browse files
committed
fix: add run command
1 parent 36ba2ca commit 421f4e2

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -782,14 +782,13 @@ jobs:
782782
# Build Android app
783783
- run:
784784
name: Build Android App
785-
working_directory: << parameters.working_directory >>/android
786-
command: ./gradlew assembleDebug
785+
working_directory: ~/project/examples/hybrid/android
786+
command: ./gradlew assembleRelease
787787

788788
# Setup testing environment
789789
- setup_mitm_proxy
790790
- setup_android_proxy
791791
- setup_appium
792-
# Start services
793792
- run:
794793
name: Start MITM Proxy
795794
background: true

examples/hybrid/appiumTests/e2e-config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const android = {
77
'appium:platformVersion': '14', //Update Your Platform Version
88
'appium:deviceName': 'pixel_3a',
99
'appium:avd': 'Pixel_8',
10-
'appium:app': './android/app/build/outputs/apk/debug/app-debug.apk', //apk path
10+
'appium:app': './android/app/build/outputs/apk/release/app-release.apk', //apk path
1111
'appium:appPackage': 'com.instabug.hybridsampleapp',
1212
'appium:appActivity': '.MainActivity',
1313
'appium:automationName': 'UiAutomator2',

0 commit comments

Comments
 (0)