-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(mobile-alphabet): implement routing
* WIP: add routing with detox tests * WIP: test routes with detox using typescript * WIP: change home screen button to Alphabet * WIP: make changes from PR suggestions
- Loading branch information
1 parent
403b51d
commit 82386bc
Showing
13 changed files
with
4,630 additions
and
685 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
{ | ||
"testRunner": { | ||
"args": { | ||
"$0": "jest", | ||
"config": "e2e/jest.config.ts" | ||
}, | ||
"jest": { | ||
"setupTimeout": 120000 | ||
} | ||
}, | ||
"apps": { | ||
"ios.debug": { | ||
"type": "ios.app", | ||
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/YOUR_APP.app", | ||
"build": "xcodebuild -workspace ios/YOUR_APP.xcworkspace -scheme YOUR_APP -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build" | ||
}, | ||
"ios.release": { | ||
"type": "ios.app", | ||
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/YOUR_APP.app", | ||
"build": "xcodebuild -workspace ios/YOUR_APP.xcworkspace -scheme YOUR_APP -configuration Release -sdk iphonesimulator -derivedDataPath ios/build" | ||
}, | ||
"android.debug": { | ||
"type": "android.apk", | ||
"build": "cd apps/mobile-alphabet/android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug", | ||
"binaryPath": "apps/mobile-alphabet/android/app/build/outputs/apk/debug/app-debug.apk", | ||
"reversePorts": [8081] | ||
}, | ||
"android.release": { | ||
"type": "android.apk", | ||
"binaryPath": "android/app/build/outputs/apk/release/app-release.apk", | ||
"build": "cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release" | ||
} | ||
}, | ||
"devices": { | ||
"simulator": { | ||
"type": "ios.simulator", | ||
"device": { | ||
"type": "iPhone 12" | ||
} | ||
}, | ||
"attached": { | ||
"type": "android.attached", | ||
"device": { | ||
"adbName": ".*" | ||
} | ||
}, | ||
"emulator": { | ||
"type": "android.emulator", | ||
"device": { | ||
"avdName": "Pixel_3a_API_34_extension_level_7_x86_64" | ||
} | ||
} | ||
}, | ||
"configurations": { | ||
"ios.sim.debug": { | ||
"device": "simulator", | ||
"app": "ios.debug" | ||
}, | ||
"ios.sim.release": { | ||
"device": "simulator", | ||
"app": "ios.release" | ||
}, | ||
"android.att.debug": { | ||
"device": "attached", | ||
"app": "android.debug" | ||
}, | ||
"android.att.release": { | ||
"device": "attached", | ||
"app": "android.release" | ||
}, | ||
"android.emu.debug": { | ||
"device": "emulator", | ||
"app": "android.debug" | ||
}, | ||
"android.emu.release": { | ||
"device": "emulator", | ||
"app": "android.release" | ||
} | ||
} | ||
} |
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
Oops, something went wrong.