-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathdevbox.json
More file actions
23 lines (23 loc) · 868 Bytes
/
Copy pathdevbox.json
File metadata and controls
23 lines (23 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.14.2/.schema/devbox.schema.json",
"include": [
"github:segment-integrations/mobile-devtools?dir=plugins/react-native&ref=main"
],
"packages": {
"yarn-berry": "latest"
},
"env": {
"ANDROID_APP_APK": "android/app/build/outputs/apk/debug/app-debug.apk",
"IOS_APP_ARTIFACT": "ios/build/Build/Products/Debug-iphonesimulator/*.app"
},
"shell": {
"scripts": {
"install": ["yarn install --no-immutable"],
"install:pods": ["cd ios && pod install && cd .."],
"build:android": ["cd android && ./gradlew assembleDebug && cd .."],
"build:ios": [
"xcodebuild -workspace ios/AnalyticsReactNativeExample.xcworkspace -scheme AnalyticsReactNativeExample -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build build"
]
}
}
}