SplashScreen Google label error

“expo”: “~47.0.14”,
“expo-splash-screen”: “~0.17.5”,
“react”: “18.1.0”,
“react-native”: “0.70.8”

BARE

When I upload the .abb for a closed test, Google return:

Element path android:id/content/SplashScreenView[2] Recommendation The label for this item may not be read by screen readers.

When I try to change the AndroidManifest.xml by adding the code:

<activity android:name=".SplashActivity" android:label="@string/app_name" android:theme="@style/Theme.App.SplashScreen" android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity>

the app no longer opens, doesn’t return an error, just times out, when i remove, app run again.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.