react-native-appsflyer
Version:
React Native Appsflyer plugin
19 lines (17 loc) • 433 B
JavaScript
const path = require('path');
module.exports = {
dependency: {
platforms: {
android: {
packageImportPath: [
'import com.appsflyer.reactnative.RNAppsFlyerPackage;',
'import com.appsflyer.reactnative.PCAppsFlyerPackage;',
].join('\n'),
packageInstance: [
'new RNAppsFlyerPackage()',
'new PCAppsFlyerPackage()',
].join(',\n'),
},
},
},
};