react-native-levin-encrypted-uploader
Version:
A DIY React Native file uploader with mandatory encryption, inspired by the VydiaRNFileUploader. Warning: This is very much a work in progress - use at your own risk! 🚧
29 lines (28 loc) • 649 B
JavaScript
/**
* @type {import('@react-native-community/cli-types').UserDependencyConfig}
*/
module.exports = {
project: {
ios: {
sourceDir: './ios',
},
android: {
sourceDir: './android',
},
},
dependencies: {
'react-native-levin-encrypted-uploader': {
platforms: {
android: {
sourceDir: './android',
packageImportPath:
'import com.levinencrypteduploader.LevinEncryptedUploaderPackage;',
packageInstance: 'new LevinEncryptedUploaderPackage()',
},
ios: {
podspecPath: './LevinEncryptedUploader.podspec',
},
},
},
},
};