Artem Chubaryan
Artem Chubaryan
Thank you for the detailed report! It looks like it cannot find `android.os.Build` in the heap dump, which is very odd, as this class should always be present. Is this...
One thing that is definitely suspicious here is the size of the **hprof** files that crashes - only **220KB** and **312KB**. This is very small for an Android app heap...
Thanks! We will take a look if there's something wrong with the heap dumper
Good idea, I'll give it a look and post back once I find anything.
Both Android Studio and YourKit refused to open the file claiming that it's not a heap dump. So I went ahead and opened it with Sublime with UTF-8 encoding. Beginning...
``` E/MethodChannel#square_reader_sdk(19763): at java.lang.ClassLoader.loadClass(ClassLoader.java:312) E/MethodChannel#square_reader_sdk(19763): at com.squareup.sdk.reader.internal.AppBootstrapHolder.loadAppBootstrapFactory(AppBootstrapHolder.java:30) ``` This part of crash stack means that it cannot find the class `com.squareup.AppBootstrapFactory` via reflection to initialize the Reader SDK. And by...
Hello! Thank you, we confirmed that this crash is happening when `targetSdkVersion=34` and device is running Android 14 (api 34). We’re currently working on a proper fix in Reader SDK...
Do you have a Theme defined in your app [like this](https://github.com/square/in-app-payments-react-native-plugin/blob/master/react-native-in-app-payments-quickstart/android/app/src/main/res/values/themes.xml)? ``` @style/CardEntryButton @color/colorCardEntryBackground @color/alto ``` If you don't want any customization, try an empty definition: ``` ```
https://docs.gradle.org/7.0/userguide/upgrading_version_6.html#removal_of_the_legacy_maven_plugin
Looks like we need to update/upload the provisioning profiles so the github actions can access them. `allowProvisioningUpdates` doesn't work, because it's in Github pipeline, I think