This might be common and comes up a lot, but when ...
# multiplatform
b
This might be common and comes up a lot, but when I build the iOS app through Android Studio it is deploying an old version of the app to the iPhone simulator, but if I hit the play button in Xcode it seems to be the latest changes. Any ideas?
🤔 1
d
Interesting. If I remember correctly, an app built through Xcode will have it's artifacts under the Xcode
~/Library/Developer/Xcode/DerivedData
directory, while the gradle builds end up under a build directory in the project directory. You could do a
gradle clean
and try the gracdle build again to see if that fixes the issue.
b
same issue, weird.
i deleted ios in the build folder and it fixed it