From 939821349638dc58d2b77b8398560d187f993dd2 Mon Sep 17 00:00:00 2001 From: Adam Kapos Date: Tue, 11 Nov 2025 16:07:28 +0200 Subject: [PATCH] Remove log spam from Purchase Connector being disabled --- expo/withAppsFlyerAndroid.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/expo/withAppsFlyerAndroid.js b/expo/withAppsFlyerAndroid.js index 24ee78ff..179c1412 100644 --- a/expo/withAppsFlyerAndroid.js +++ b/expo/withAppsFlyerAndroid.js @@ -51,12 +51,10 @@ function withCustomAndroidManifest(config) { module.exports = function withAppsFlyerAndroid(config, { shouldUsePurchaseConnector = false } = {}) { if (shouldUsePurchaseConnector) { config = addPurchaseConnectorFlag(config); - } else { - console.log('[AppsFlyerPlugin] Purchase Connector disabled, skipping gradle property injection'); } // Always apply Android manifest modifications for secure data handling config = withCustomAndroidManifest(config); return config; -}; \ No newline at end of file +};