We want to upgrade compileSdkVersion and targetSdkVersion of react-native-share-menu to 35, as required by recent Play Store policies / to match our project configuration.
Currently, the library uses:
compileSdkVersion 29
targetSdkVersion 29
buildToolsVersion "29.0.2"
We tested locally by applying a patch with the following updates:
- compileSdkVersion 29
- buildToolsVersion "29.0.2"
+ compileSdkVersion 35
+ buildToolsVersion "35.0.0"
- targetSdkVersion 29
+ targetSdkVersion 35
This change works correctly in our setup without breaking anything.
We will create bug/PR on this library