3.23.1 • Published 5 months ago
@hackler/react-native-sdk v3.23.1
Hackle React Native SDK
Install
npm install --save @hackler/react-native-sdk
react-native link
cd ios
pod installUsage
initialize
import { createInstance } from "@hackler/react-native-sdk";
const hackleClient = createInstance("YOUR_APP_SDK_KEY");
const user = {
id: "ae2182e0",
properties: {
app_version: "1.0.1",
age: 23,
paying_customer: true
}
};
const App: () => React$Node = () => {
return (
<HackleProvider hackleClient={hackleClient} user={user} timeout={1000}>
<YourApp/>
</HackleProvider>
);
};Decide the variation
function App() {
return (
<HackleExperiment experimentKey={42}>
<HackleVariation variation={"A"}>
<OldBlueButton/>
</HackleVariation>
<HackleVariation variation={"B"}>
<NewRedButton/>
</HackleVariation>
</HackleExperiment>
)
};Decide the Feature
function App() {
return (
<HackleFeature featureKey={42}>
{(isOn) =>
(isOn ? <NewFeature/> : <OldFeature/>)
}
</HackleFeature>
)
};Recodes the event
const track = useTrack()
const event = {
key: "purchase",
value: 5000,
properties: {
first_paying: false,
item_count: 5
}
}
<Button onPress={() => track(event)} title={"Purchase"}/>3.20.0
7 months ago
3.22.0
6 months ago
3.17.0
9 months ago
3.15.1
1 year ago
3.19.0
8 months ago
3.17.1
9 months ago
3.21.0
7 months ago
3.23.1
5 months ago
3.23.0
6 months ago
3.17.0-canary.11
9 months ago
3.16.1
10 months ago
3.16.0
11 months ago
3.16.3
10 months ago
3.18.0
8 months ago
3.16.2
10 months ago
3.16.5
9 months ago
3.16.4
9 months ago
3.23.0-canary.14
6 months ago
3.23.0-canary.12
6 months ago
3.15.0
1 year ago
3.14.1
1 year ago
3.14.0
1 year ago
3.13.0
1 year ago
3.12.0
1 year ago
3.11.0
2 years ago
3.10.0
2 years ago
3.9.1
2 years ago
3.7.3
2 years ago
3.9.0
2 years ago
3.8.0
2 years ago
3.7.2
2 years ago
3.7.1
2 years ago
3.7.0
2 years ago
3.6.1
3 years ago
3.6.0
3 years ago
3.5.1
3 years ago
3.5.0
3 years ago
3.4.0
3 years ago
3.3.1
3 years ago
3.4.1
3 years ago
3.3.0
3 years ago
3.2.0
3 years ago
3.1.3
3 years ago
3.1.2
4 years ago
3.1.1
4 years ago
3.1.0
4 years ago
3.0.0
4 years ago
2.1.2
4 years ago
2.1.1
4 years ago
2.1.0
4 years ago
2.0.1
4 years ago
2.0.0
4 years ago
1.0.3
4 years ago
1.0.1
5 years ago
0.1.2
5 years ago
0.1.1
5 years ago
0.1.0
5 years ago