Sample apps demonstrating the usage of the Localytics React Native SDK.
Tests all of localytics-react-native
APIs
Sample of a Localytics Inbox implementation
Sample of a Localytics Push implementation
brew install node
brew install watchman
brew install yarn
npm install -g react-native-cli
Using Facebook's docs (https://facebook.github.io/react-native/docs/getting-started.html), setup a new React Native app:
npm install -g create-react-native-app
create-react-native-app SampleProjectName
cd SampleProjectName
npm start
You can use this app to get familiar with React Native. Once you're ready to write native code for each platform (iOS/Android) and integrate Localytics, you'll need to eject from Create React Native App:
cd SampleProjectName
npm run eject
- Select
React Native: I'd like a regular React Native project.
- Name your app (should be same as directory name)
Next, follow the instructions to integrate Localytics.
https://docs.localytics.com/dev/react-native.html
cd SampleProjectName
react-native run-ios
Note: If you see the ":CFBundleIdentifier", Does Not Exist
error, you can just open
and run the project directly from Xcode (path ios/LocalyicsReactTest.xcworkspace
). See this
issue for some possible fixes: facebook/react-native#7308.
Without defining the SDK location, you'll likely see this error:
> SDK location not found. Define location with sdk.dir in the local.properties file or with an ANDROID_HOME environment variable.
Example of how to add local.properties file:
cd SampleProjectName
cd android
touch local.properties
Add the following line:
sdk.dir = /Users/YOUR_USERNAME_HERE/Library/Android/sdk
You may want to clean your android project after configuration and before running:
cd SampleProjectName
cd android
./gradlew clean
Ensure you have a physical device in debugging mode connected to your computer, or an Android emulator running.
cd SampleProjectName
react-native run-android
Note: Java 8 is required to build the project.