Skip to content

Commit

Permalink
fixed undefined value in example project. add react-native-reanimated…
Browse files Browse the repository at this point in the history
… dependency.
  • Loading branch information
akashvercetti committed Jan 17, 2022
1 parent 091b7c1 commit d72de97
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Example/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,16 +233,16 @@ class Expandable_ListView extends Component {
GetCleverTapAttributionIdentifier();
break;
case 49:
CleverTap.setOptOut(value);
CleverTap.setOptOut(false);
break;
case 50:
CleverTap.enableDeviceNetworkInfoReporting(value);
CleverTap.enableDeviceNetworkInfoReporting(true);
break;
case 51:
CleverTap.enablePersonalization();
break;
case 52:
CleverTap.setOffline(value);
CleverTap.setOffline(false);
break;
case 53:
addCleverTapAPIListeners(true);
Expand Down
1 change: 1 addition & 0 deletions Example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"react-native-drawer": "^2.5.1",
"react-native-gesture-handler": "^1.10.3",
"react-native-pager-view": "^5.1.2",
"react-native-reanimated": "^2.3.1",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.0.0",
"react-native-tab-view": "^3.0.1",
Expand Down

0 comments on commit d72de97

Please sign in to comment.