Skip to content

Commit

Permalink
Release version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyorbin committed Feb 15, 2023
1 parent 27e8a0d commit 686119b
Show file tree
Hide file tree
Showing 15 changed files with 1,611 additions and 5,329 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ body:
- type: input
id: sdk_version
attributes:
label: Which react-native-appboy-sdk SDK version?
label: Which @braze/react-native-sdk SDK version?
placeholder: ex. 1.40.0
validations:
required: true
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.0.0

##### ⚠ Breaking
- Adds support for Braze React Native SDK v2.0.2+. This version is not backwards compatible with previous versions of Braze React Native SDK.

# 0.6.0

##### ⚠ Breaking
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,11 @@ Effective marketing automation is an essential part of successfully scaling and

## About

This Expo Config plugin auto configures the [`Braze React Native SDK`](https://www.npmjs.com/package/react-native-appboy-sdk) when the native code is generated (`expo prebuild`). See the [documentation](https://www.braze.com/docs/developer_guide/platform_integration_guides/react_native/react_sdk_setup/) for details on setup and configuration options.
This Expo Config plugin auto configures the [`Braze React Native SDK`](https://www.npmjs.com/package/@braze/react-native-sdk) when the native code is generated (`expo prebuild`). See the [documentation](https://www.braze.com/docs/developer_guide/platform_integration_guides/react_native/react_sdk_setup/) for details on setup and configuration options.

## Version Support

| Braze Expo Plugin | Braze React Native SDK |
| ----------------- | ---------------------- |
| 1.0.0 | >= 2.0.2 |
| <= 0.6.0 | 1.38.0 - 1.41.0 |
10 changes: 5 additions & 5 deletions example/App.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import { StatusBar } from "expo-status-bar";
import React from "react";
import { SafeAreaProvider } from "react-native-safe-area-context";

import useCachedResources from './hooks/useCachedResources';
import BrazeComponent from './components/Braze';
import useCachedResources from "./hooks/useCachedResources";
import { BrazeComponent } from "./components/Braze";

export default function App() {
const isLoadingComplete = useCachedResources();
Expand Down
Loading

0 comments on commit 686119b

Please sign in to comment.