Error compiling 'expo-contacts'

I am seeing a Java compilation error during compilation of this module. The module is using the latest version. Is this a known issue?

Thanks

hi there! we can take a look at this tomorrow and fix it. for now you can make this change directly in your node_modules and use patch-package to work around it

(file paths will be different then below but i think you get the idea)

diff --git a/packages/expo-contacts/android/src/main/java/expo/modules/contacts/Contact.java b/packages/expo-contacts/android/src/main/java/expo/modules/contacts/Contact.java
index ecd3414e21..a29a8ed862 100644
--- a/packages/expo-contacts/android/src/main/java/expo/modules/contacts/Contact.java
+++ b/packages/expo-contacts/android/src/main/java/expo/modules/contacts/Contact.java
@@ -11,7 +11,7 @@ import android.provider.ContactsContract;
 import android.text.TextUtils;
 import android.util.Log;

-import org.jetbrains.annotations.Nullable;
+import androidx.annotation.Nullable;

 import java.io.ByteArrayOutputStream;
 import java.text.ParseException;