-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(agp): do not apply namespace if its not available #70
Conversation
I think we should add back |
Also should we try implement this solution ? Example here |
yeah we should add it back, thanks for catching that. but i'm not sure about conditionally taking it out too via code - it might be ignored react-native-community/discussions-and-proposals#671 (comment) but I need to test it. |
@osamaqarem Please see the following comment as well: react-native-community/discussions-and-proposals#671 (comment) |
@osamaqarem can i complete this PR or you have already changes on local ? |
I'm thinking to close this PR as integration of expo-modules-core requires AGP 7 minimum, which means if you're on RN67 (AGP 4) you had to upgrade your AGP to 7 to use expo-modules-core in the first place. In other words, if we were never compatible with AGP 4 (RN67 and below) then we never broke backward compatibility. I couldn't find docs that say this, but there is this comment on a related issue And then implicitly by expo-modules-core manual integration steps (setting AGP to 7.4): Lastly, there is guide on from expo about changes needed for custom expo modules about those Gradle/AGP changes, and they don't address the concern of backward compatibility. |
Okay, sounds reasonable |
I did some testing, and our v2.0.0 release only works with RN>0.70 which matches up to Expo SDK 47 This makes sense as per our README for Expo we specify SDK 47 as the minimum. I'll close this PR and update the README mentioning the missing requirement of > RN70 for bare apps, and i'll suggest v1 for older users. |
Based on software-mansion/react-native-gesture-handler#2448