Android Question UltimateListView database demo not load on a phone

amorosik

Expert
Licensed User
I'm trying to test the Ultimate List View grid and trying to load the Database demo, when the ide load the program on the phone it shoots a message
"The Google play Store application has crashed abnormally"
Pc with B4 13.40, sdk35, UltimateListView 4.50
Phone with Android 6 + B4A Bridge 2.67
Manifest is:
B4X:
' Default section
AddManifestText(
<uses-sdk android:minSdkVersion="23" 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$")

' Plus the sdk 35 LightTheme section
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>
)


1757471580673.png

Any advice on why i can't load the program on the phone?
 
Last edited:

LucaMs

Expert
Licensed User
Longtime User
Qualche prova:

1. Riavviare lo smartphone
2. aggiornare Google Play Store
3. cambiare il tema nel manifest

Se serve solo sul tuo smartphone, magari imposta anche android:targetSdkVersion su 23.

-------------

Some attempts:

1. Restart your smartphone
2. Update Google Play Store
3. Change the theme in the manifest

If you only need it on your smartphone, try to set also android:targetSdkVersion to 23.
 
Last edited:
Upvote 0

amorosik

Expert
Licensed User
Some attempts:

1. Restart your smartphone
2. Update Google Play Store
3. Change the theme in the manifest

If you only need it on your smartphone, try to set also android:targetSdkVersion to 23.

1- already done
2- Play Store is ver 47.8.19-23 and if I try to update it, it says "It's up to date"
3- I tried to remove the whole second part (after "Plus the sdk 35 ...") from the manifest, but it gives the same error
 
Upvote 0

LucaMs

Expert
Licensed User
Longtime User
Upvote 0

amorosik

Expert
Licensed User
Yes, I had seen that post, so I inserted the second part of the poster
But it doesn't seem to affect my problem, with or without is the same thing
 
Upvote 0
Top