-
Notifications
You must be signed in to change notification settings - Fork 0
[MOB-11848] EAS instructions and example #48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
[MOB-11848] EAS instructions and example #48
Conversation
Diff Coverage: Not applicable. There was no coverage data reported for the files in this diff. Total Coverage: This PR will not change total coverage. 🛟 Help
|
To resolve signing issues with the `IterableExpoRichPush` target, you need to add the app extension configuration to your `app.json` file. Add the following to your `expo.extra.eas` configuration: | ||
|
||
```json | ||
{ | ||
"expo": { | ||
"ios": { | ||
"bundleIdentifier": "your.app.bundle.id" | ||
}, | ||
"extra": { | ||
"eas": { | ||
"projectId": "YOUR_EAS_PROJECT_ID", | ||
"build": { | ||
"experimental": { | ||
"ios": { | ||
"appExtensions": [ | ||
{ | ||
"targetName": "IterableExpoRichPush", | ||
"bundleIdentifier": "your.app.bundle.id.IterableExpoRichPush" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
``` | ||
|
||
**Example Configuration:** | ||
If your EAS project ID is `abc123` and your bundle identifier is `com.myapp`: | ||
|
||
```json | ||
{ | ||
"expo": { | ||
"ios": { | ||
"bundleIdentifier": "com.myapp" | ||
}, | ||
"extra": { | ||
"eas": { | ||
"projectId": "abc123", | ||
"build": { | ||
"experimental": { | ||
"ios": { | ||
"appExtensions": [ | ||
{ | ||
"targetName": "IterableExpoRichPush", | ||
"bundleIdentifier": "com.myapp.IterableExpoRichPush" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
``` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very clear instructions. Great!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking great!
No description provided.