rajatSingh16
rajatSingh16
I resolved this problem, there is nothing wrong with imports I simply **### RCTAesCrypto.podspec file under react-native-aes-kit** and the content of the file is require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json')))...
You have to make a `RCTAesCrypto.podspec` under the directory `react-native-aes-kit` you can find this directory in `node-modules` important thing is is this line `s.source_files ="ios/RCTAesCrypto/**/*.{h,m}"` which tells where to look...
you have to replace some variables in your `NSData+AES.m` in module ios like this `kCCKeySizeAES128` --> `kCCKeySizeAES256` `kCCAlgorithmAES128` --> `kCCAlgorithmAES` and the variable below `keyPtr` --> `32` and with these...