Skip to content

Commit e461b26

Browse files
committed
Update expo modification
1 parent 9726082 commit e461b26

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

expo/withAppsFlyer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
const withAppsFlyerIos = require('./withAppsFlyerIos');
2-
const withAppsFlyerAndroid = require('./withAppsFlyerAndroid');
2+
//const withAppsFlyerAndroid = require('./withAppsFlyerAndroid');
33

44
module.exports = function withAppsFlyer(config, {
55
shouldUseStrictMode = false,
66
shouldUsePurchaseConnector = false
77
} = {}) {
88
config = withAppsFlyerIos(config, { shouldUseStrictMode, shouldUsePurchaseConnector });
9-
config = withAppsFlyerAndroid(config, { shouldUsePurchaseConnector });
9+
//config = withAppsFlyerAndroid(config, { shouldUsePurchaseConnector });
1010
return config;
1111
};

expo/withAppsFlyerAndroid.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// this is not used currently because of a bug in Expo 53 , please manually add appsflyer.enable_purchase_connector = true to the gradle.properties file in Order to use Purchase Connector feature in Android.
2+
/*
13
const { withGradleProperties } = require('@expo/config-plugins');
24
35
function withAppsFlyerGradleProperties(config) {
@@ -24,4 +26,5 @@ module.exports = function withAppsFlyerAndroid(config, {
2426
}
2527
2628
return config;
27-
};
29+
};
30+
*/

0 commit comments

Comments
 (0)