apps-sdk 1.0.73 → 1.0.74

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apps-sdk",
3
- "version": "1.0.73",
3
+ "version": "1.0.74",
4
4
  "description": "Apps SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -136,6 +136,7 @@ class PayWall extends React.Component {
136
136
  onShouldStartLoadWithRequest={request => {
137
137
  console.log('request', request);
138
138
  if (request.url !== this.paywallData.url) {
139
+ Networking.sendEvent('action', 'click_link', {url: request.url });
139
140
  Linking.openURL(request.url);
140
141
  return false;
141
142
  } else {