1const path = require('path'); 2 3module.exports = { 4 dependency: { 5 platforms: { 6 ios: { 7 podspecPath: path.join(__dirname, 'ios/ExpoModulesCore.podspec'), 8 project: 'ios/ExpoModulesCore.xcodeproj', 9 }, 10 android: { 11 packageImportPath: 'import expo.modules.adapters.react.ModuleRegistryAdapter;', 12 }, 13 }, 14 }, 15}; 16