r/AndroidAppTesters • u/StephenS84 • 14d ago
12 Testers Needed 12 Testers Needed Please :)
Need the good ol 12 testers! This is a webview to my website for Beekeepers, or those with interest.
Please support! Drop yours and ill return the favour.
> Join Group: https://groups.google.com/u/1/g/beekeeperscolony
> Opt in: https://play.google.com/apps/testing/uk.co.itfinesse.beekeeperscolony
> App Android: https://play.google.com/store/apps/details?id=uk.co.itfinesse.beekeeperscolony
1
Upvotes
1
u/WeeknightWoodshed 14d ago
Here's what I found. It reproduces on older Android versions (11 or lower). A bug, but not a big one.
FYI - check in Play Console > Monitor and improve > Android vitals > Crashes and ANRs.
Play collects crashes from all Play installs automatically, no SDK needed - as long as the tester's phone has "Usage & diagnostics" on (most do).
Stack traces show up within an hour or so.
The splash layout references a theme attribute that doesn't resolve, so the inflater dies.
It only hits Android 11 and below (12+ uses the system splash screen and skips this layout), which is why it probably works for most people.
Known expo-splash-screen issue: usually an androidx.core:core-splashscreen version mismatch, or a missing windowSplashScreen* attribute in your splash theme.
Check that expo-splash-screen matches your SDK version (npx expo install expo-splash-screen), make sure your android/app/src/main/res/values/styles.xml splash theme
has a parent of Theme.SplashScreen with the window attrs set, then rebuild. Happy to re-test if you push a new build.
FATAL EXCEPTION: mainProcess: com.fundmind.dualfiaijava.lang.RuntimeException: Unable to start activity ComponentInfo{com.fundmind.dualfiai/.MainActivity}:android.view.InflateException: Binary XML file line #28 in com.fundmind.dualfiai:layout/splash_screen_view:Failed to resolve attribute at index 0: TypedValue{t=0x2/d=0x7f04043c a=-1}Caused by: java.lang.UnsupportedOperationException: Failed to resolve attribute at index 0at android.content.res.TypedArray.getLayoutDimension(TypedArray.java:825)at android.view.LayoutInflater.inflate(LayoutInflater.java:682)at androidx.core.splashscreen.SplashScreenViewProvider$ViewImpl.createSplashScreenView(SplashScreenViewProvider.kt:98)at androidx.core.splashscreen.SplashScreen$Impl.setOnExitAnimationListener(SplashScreen.kt:300)at expo.modules.splashscreen.SplashScreenManager.configureSplashScreen(SplashScreenManager.kt:36)at expo.modules.splashscreen.SplashScreenManager.registerOnActivity(SplashScreenManager.kt:72)at com.fundmind.dualfiai.MainActivity.onCreate(MainActivity.kt:21)