Justin Poliachik
Justin Poliachik
I'm getting this error too. Using Xcode 12.4, with ReactNative 0.63.4, and `tipsi-stripe: ^9.0.0` App built fine before. But immediately after `yarn add tipsi-stripe` and `pod install` I start getting...
I think the root issue is related to Stripe's recent iOS SDK 21.x update, and their switch to Swift. See https://stripe.com/docs/mobile/ios/sdk-21-migration I got my build working as a workaround by...
Not sure how others are getting this to work - I set `addUnimodulesDependencies([modulesPaths:['../../../node_modules']])` and removed the `package.json` check in `node_modules/react-native-unimodules/gradle.groovy` but then started getting error: ``` A problem occurred evaluating...
Sure thing @ecklf, these are the lines I changed in those two files. `app/build.gradle` ``` addUnimodulesDependencies([modulesPaths:['../../../node_modules']]) ``` `settings.gradle` ``` apply from: file("../../node_modules/react-native-unimodules/gradle.groovy"); includeUnimodulesProjects([ modulesPaths : ['../../../node_modules'] ]) ``` These two...
I don't think this approach will work for rendering children, since we're rendering the view with width=0, height=0, and using the border to draw the triangle.
@frankcalise sure thing, I'll work on this early next week 👍
This is ready for additional review. As far as CLI documentation, I added the `--mst` flag option to the list, and added a blurb under the MST page. I didn't...
Even if you disable autolinking for iOS via `react-native.config.js` in project: ``` module.exports = { dependencies: { "react-native-vector-icons": { platforms: { ios: null, }, }, }, }; ``` It still...
@azesmway checking in on this PR - have you been able to look over it? Let me know if you have any questions or concerns
I'm also experiencing this. Oddly the issue is sporadic in my main app, but in a minimal `npx create-expo-app` repro it happens every time. Here's the minimal repro - `modal.tsx`...