react-native-my-app-list
Version:
Get user-facing installed apps for React Native Android using privacy-friendly queries instead of QUERY_ALL_PACKAGES permission.
26 lines (24 loc) • 650 B
JavaScript
const path = require('path');
module.exports = {
dependency: {
platforms: {
android: {
sourceDir: path.join(__dirname, 'android'),
packageImportPath: 'import com.myapplist.MyAppListPackage;',
libraryName: 'MyAppList',
componentDescriptors: null,
cmakeListsPath: null,
cxxModuleCMakeListsModuleName: null,
cxxModuleCMakeListsPath: null,
cxxModuleHeaderName: null,
},
ios: {
podspecPath: path.join(__dirname, 'MyAppList.podspec'),
configurations: [],
},
},
assets: [],
hooks: {},
params: [],
},
};