Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
Release version 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jerielng committed Jun 20, 2024
1 parent ff19b08 commit 09af7dc
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 2.1.2

##### Fixed
- Fixes the sample app to contain examples on configuring app extension build settings for Expo Application Services (EAS).

# 2.1.1

##### Fixed
Expand Down
24 changes: 23 additions & 1 deletion example/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,28 @@
"androidNotificationAccentColor": "#ff112233"
}
]
]
],
"extra": {
"eas": {
"projectId": "18227622-e62f-4e6b-a5dc-c82f92c4200d",
"build": {
"experimental": {
"ios": {
"appExtensions": [
{
"targetName": "BrazeExpoRichPush",
"bundleIdentifier": "com.braze.expoexample.BrazeExpoRichPush"
},
{
"targetName": "BrazeExpoPushStories",
"bundleIdentifier": "com.braze.expoexample.BrazeExpoPushStories"
}
]
}
}
}
}
},
"owner": "braze"
}
}
18 changes: 18 additions & 0 deletions example/eas.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"cli": {
"version": ">= 3.15.1"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"preview": {
"distribution": "internal"
},
"production": {}
},
"submit": {
"production": {}
}
}
5 changes: 5 additions & 0 deletions example/hooks/pre-install
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash

cd ../plugin
yarn install
yarn build
3 changes: 2 additions & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"web": "npx expo start --web",
"eject": "npx expo eject",
"test": "jest --watchAll",
"prebuild": "npx expo prebuild --clean"
"prebuild": "npx expo prebuild --clean",
"eas-build-pre-install": "./hooks/pre-install"
},
"jest": {
"preset": "jest-expo"
Expand Down
2 changes: 1 addition & 1 deletion plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@braze/expo-plugin",
"version": "2.1.1",
"version": "2.1.2",
"description": "Config plugin for @braze/react-native-sdk package",
"main": "build/withBraze.js",
"types": "build/withBraze.d.ts",
Expand Down

0 comments on commit 09af7dc

Please sign in to comment.