Adbrix SDK for react-native
npm install react-native-adbrix-remaster-preview
We try our best to support you to integrate our RN Plugin into your project, if you have any issues please contact us via email se.team@igaworks.com
When submitting an issue please tell us relevant information such as your appkey, development environment, code snippet, etc..
- Android SDK v2.1.0.1 released on 2021.06.24
- iOS SDK v1.6.5801 released on 2021.06.30
>
Pls check release log to find suitable version for your development environment.
To change iOS xcframework version, after installing plugin from npm, go to node_modules/react-native-adbrix-remaster/react-native-adbrix-remaster.podspec, update native dependency: s.dependency 'AdBrixRemastered_XC', '1.0.0'. Then use pod update command:
```
cd ios && pod update
1. $ npm install react-native-adbrix-remaster --save$ react-native link react-native-adbrix-remaster
2. If React Native version <= 0.59
Then run the following:
iOS
``
$ cd ios && pod install
$ react-native run-ios
Android
``
$ react-native run-android
> Starting from RN v0.60, and react-native-adbrix-remaster v1.4.6 the plugin uses autolinking.
If your app does not support autolinking, follow steps below. You can also reference example app in this repository to learn more about manual link.
#### iOS
1. Add to pod file path to react-native-adbrix-remaster.podspec. Example: pod 'react-native-adbrix-remaster', :path => '../..'
2. You can find react-native-adbrix-remaster source files inside Development Pods > react-native-adbrix-remaster
#### Android
1. Open up android/app/src/main/java/[...]/MainActivity.javaimport io.adbrix.AdbrixPackage;
- Add to the imports at the top of the filenew AdbrixPackage()
- Add to the list returned by the getPackages() method`
`
@Override
protected List
@SuppressWarnings("UnnecessaryLocalVariable")
List
// Packages that cannot be autolinked yet can be added manually here, for example:
// packages.add(new MyReactNativePackage());
packages.add(new AdbrixPackage());
return packages;
}
android/settings.gradle
2. Append the following lines to :`
`
include ':react-native-adbrix-remaster
project(':react-native-adbrix-remaster).projectDir = new File(rootProject.projectDir, '../node_modules/react-native-adbrix-remaster/android')
android/app/build.gradle
3. Insert the following lines inside the dependencies block in :`
`
implementation project(':react-native-adbrix-remaster)
javascript
import AdbrixRm from 'react-native-adbrix-remaster';``Great installation and setup guides can be viewed here.
- Platform Setup Guide
- Deeplink and Deferred Deeplink Guide
- Custom Event API Guide