Skip to content

Commit

Permalink
Release version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyorbin committed Mar 2, 2023
1 parent 17f4e76 commit 9f98975
Show file tree
Hide file tree
Showing 11 changed files with 3,347 additions and 3,940 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 1.1.0

##### ⚠ Breaking
- Now requires Braze React Native SDK v2.1.0+.
- Updates the default Kotlin version to 1.8.10 for Expo 48 compatibility. This value is overridden by the [`android.kotlinVersion`](https://docs.expo.dev/versions/latest/sdk/build-properties/#pluginconfigtypeandroid) property in `app.json`.

##### Changed
- No longer requires static linkage of frameworks for iOS.

# 1.0.1

##### Fixed
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ This Expo Config plugin auto configures the [`Braze React Native SDK`](https://w

| Braze Expo Plugin | Braze React Native SDK |
| ----------------- | ---------------------- |
| >= 1.0.0 | >= 2.0.2 |
| 1.1.0 | >= 2.1.0 |
| 1.0.0 - 1.0.1 | >= 2.0.2 |
| <= 0.6.0 | 1.38.0 - 1.41.0 |
15 changes: 11 additions & 4 deletions example/README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
# Running the application

First, install dependencies and run the `prebuild` command to generate the native files.
1. From the plugin folder, install dependencies and build the plugin.

```bash
yarn install
yarn build
```

2. Install dependencies and run the `prebuild` command to generate the native files.

```bash
yarn install
expo prebuild
```

Then, run on your chosen platform:
3. Run on your chosen platform:

```bash
expo run:ios
yarn ios
# or
expo run:android
yarn android
```
13 changes: 2 additions & 11 deletions example/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
"android.permission.INTERNET"
],
"package": "com.braze.expoexample",
"googleServicesFile": "./assets/google-services.json"
"googleServicesFile": "./assets/google-services.json",
"kotlinVersion": "1.8.10"
},
"web": {
"favicon": "./assets/images/favicon.png"
Expand All @@ -54,16 +55,6 @@
"firebaseCloudMessagingSenderId": "531790618696",
"androidHandlePushDeepLinksAutomatically": true
}
],
[
"expo-build-properties",
{
"android": {
"compileSdkVersion": 33,
"targetSdkVersion": 33,
"buildToolsVersion": "33.0.1"
}
}
]
]
}
Expand Down
41 changes: 20 additions & 21 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,36 +15,35 @@
},
"dependencies": {
"@braze/expo-plugin": "file:../plugin",
"@braze/react-native-sdk": "~2.0.2",
"@braze/react-native-sdk": "~2.1.0",
"@expo/vector-icons": "^13.0.0",
"@react-native-picker/picker": "2.4.8",
"@react-navigation/bottom-tabs": "^6.0.5",
"@react-navigation/native": "^6.0.2",
"@react-navigation/native-stack": "^6.1.0",
"expo": "~47.0.12",
"expo-asset": "~8.7.0",
"expo-build-properties": "~0.4.1",
"expo-constants": "~14.0.2",
"expo-font": "~11.0.1",
"expo-linking": "~3.3.0",
"expo-splash-screen": "~0.17.5",
"expo-status-bar": "~1.4.2",
"expo-system-ui": "~2.0.1",
"expo-web-browser": "~12.0.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.5",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"expo": "~48.0.4",
"expo-asset": "~8.9.0",
"expo-constants": "~14.2.1",
"expo-font": "~11.1.1",
"expo-linking": "~4.0.1",
"expo-splash-screen": "~0.18.1",
"expo-status-bar": "~1.4.4",
"expo-system-ui": "~2.2.1",
"expo-web-browser": "~12.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.3",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-web": "~0.18.7"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@types/react": "~18.0.24",
"@types/react-native": "~0.70.6",
"jest": "^26.6.3",
"jest-expo": "^47.0.0",
"react-test-renderer": "17.0.2",
"@types/react": "~18.0.27",
"@types/react-native": "~0.71.3",
"jest": "^29.2.1",
"jest-expo": "^48.0.1",
"react-test-renderer": "18.2.0",
"typescript": "^4.6.3"
},
"private": true
Expand Down
Loading

0 comments on commit 9f98975

Please sign in to comment.