react-native-share-menu icon indicating copy to clipboard operation
react-native-share-menu copied to clipboard

compileSdkVersion version

Open GeekenDev opened this issue 1 year ago • 1 comments

Hi! 👋

Firstly, thanks for your work on this project! 🙂

Today I used patch-package to patch [email protected] for the project I'm working on.

I was receiving errors when trying compile due to the compileSdkVersion version being too low.

Here is the diff that solved my problem:

diff --git a/node_modules/react-native-share-menu/android/build.gradle b/node_modules/react-native-share-menu/android/build.gradle
index 9557fdb..da35999 100644
--- a/node_modules/react-native-share-menu/android/build.gradle
+++ b/node_modules/react-native-share-menu/android/build.gradle
@@ -1,7 +1,7 @@
 apply plugin: 'com.android.library'
 
 android {
-    compileSdkVersion 29
+    compileSdkVersion 30
     buildToolsVersion "29.0.2"
 
     defaultConfig {

This issue body was partially generated by patch-package.

GeekenDev avatar Mar 17 '24 11:03 GeekenDev

work for me ... thanks xd

thiagomachado1998 avatar Mar 28 '24 00:03 thiagomachado1998