opentok-react-native
opentok-react-native copied to clipboard
fix(android): Set minSdkVersion to 23
Hi
I've submitted this Pull Request to update your library to be compatible with the latest Expo version. The change involves setting minSDKVersion to 23.
Updating to minSDKVersion 23 ensures compatibility with the latest Expo features, enhancing the user experience for Expo developers using your library.
up .. we need this patch also
If it can help
This fix with expo plugin is working for me:
const withOpentokPlugin: ConfigPlugin = (config) => {
const manifestConfig = withAndroidManifest(config, (newConfig) => {
newConfig.modResults.manifest['uses-sdk'] = [
...(newConfig.modResults.manifest['uses-sdk'] || []),
{ $: { 'tools:overrideLibrary': 'com.opentok.android, com.vonage.mltransformers' } },
];
return newConfig;
});
return manifestConfig;
};
export default withOpentokPlugin(expoConfig)