I am using react-native 0.62.2 ,
and it's
pod 'RNFastImage', :path => '../node_modules/react-native-fast-image'
also available in podlist file
but getting this issue.
RN 0.62 has autolink functionality so you don't need add entry in pod
Came across the same working on the iOS Simulator. Running pod install and rebuilding the app fixed it for me.
Having the same issue, in Android 9 with Expo 38 and RN 38
I found that this package is not available in expo yet :(
https://expo.canny.io/feature-requests/p/add-react-native-fast-image
same for me
having the same issue on android, I'm not using Expo.
having the same issue on android, I'm not using Expo.
resolved by re-building app
I have the same issue here, I1m using Expo Bare Workflow.
make sure you reinstall podfile in ios folder
I'm also facing same issue,
tried everything
./MainApplication.java
import com.dylanvann.fastimage.FastImageViewPackage;
public class MainApplication extends Application implements ReactApplication {
private final ReactNativeHost mReactNativeHost =
new ReactNativeHost(this) {
@Override
public boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG;
}
@Override
protected List<ReactPackage> getPackages() {
@SuppressWarnings("UnnecessaryLocalVariable")
List<ReactPackage> packages = new PackageList(this).getPackages();
// Packages that cannot be autolinked yet can be added manually here, for example:
// packages.add(new MyReactNativePackage());
packages.add(new YellowMessengerModulePackage());
packages.add(new FastImageViewPackage())
return packages;
}
@Override
protected String getJSMainModuleName() {
return "index";
}
};
})
Most helpful comment
Came across the same working on the iOS Simulator. Running pod install and rebuilding the app fixed it for me.