Android Question Release remarks. What to do with this?

andredamen

Active Member
Licensed User
Longtime User
I'm seeing this in the Google Console:

Edge-to-edge rendering may not be displayed to all users.

Your app uses deprecated APIs or parameters for edge-to-edge rendering.

Remove screen size and orientation restrictions in your app to support large-screen devices.

What can I do about this? Can anyone help? So far, no issues with the app's release.
 

DonManfred

Expert
Licensed User
Longtime User
Upvote 0

andredamen

Active Member
Licensed User
Longtime User
I still get the remarks in the Google console.
This is the manifest in the app. What is still wrong?

B4X:
'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: https://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="22" android:targetSdkVersion="35"/>
<supports-screens android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'End of default text.


SetApplicationAttribute(android:theme, "@style/LightTheme")
CreateResource(values, theme.xml,
<resources>
    <style
        name="LightTheme" parent="@android:style/Theme.Material.Light">
       <item name="android:actionMenuTextAppearance">@style/LowerCaseMenu</item>
       <item name="android:windowOptOutEdgeToEdgeEnforcement">true</item>
    </style>
     <style name="LowerCaseMenu" parent="android:TextAppearance.Material.Widget.ActionBar.Menu">
        <item name="android:textAllCaps">false</item>
    </style>
</resources>
)
AddPermission(android.permission.PERMISSION_CALL_PHONE)
'SetApplicationAttribute(android:allowBackup, "false")

AddManifestText(
<queries>
    <package android:name="com.whatsapp" />   
  </queries>
)

AddApplicationText(
  <provider
  android:name="android.support.v4.content.FileProvider"
  android:authorities="$PACKAGE$.provider"
  android:exported="false"
  android:grantUriPermissions="true">
  <meta-data
  android:name="android.support.FILE_PROVIDER_PATHS"
  android:resource="@xml/provider_paths"/>
  </provider>
)
CreateResource(xml, provider_paths,
   <files-path name="name" path="shared" />
)
CreateResourceFromFile(Macro, FirebaseAnalytics.GooglePlayBase)
AddPermission(com.google.android.gms.permission.AD_ID)
 
Upvote 0
Top