Android Question [SOLVED] Updated my SDK and now have many errors-files missing

jimmyF

Active Member
Licensed User
Longtime User
This is a new error since updating my SDK using the B4A SDK Manager.

This is the error:
Failed to generate resource table for split ''
E:\Anywhere Software\B4A\Projects\SEFMessaging\Objects\bin\extra\res7\res\values-v28\values-v28.xml:7: error: Error: No resource found that matches the given name (at 'dialogCornerRadius' with value '?android:attr/dialogCornerRadius').

and this is the contents of the values-v28.xml file:

B4X:
<resources>
    <style name="Base.Theme.AppCompat" parent="Base.V28.Theme.AppCompat"/>
    <style name="Base.Theme.AppCompat.Light" parent="Base.V28.Theme.AppCompat.Light"/>
    <style name="Base.V28.Theme.AppCompat" parent="Base.V26.Theme.AppCompat">
        <!-- We can use the platform styles on API 28+ -->
        <item name="dialogCornerRadius">?android:attr/dialogCornerRadius</item>
    </style>
    <style name="Base.V28.Theme.AppCompat.Light" parent="Base.V26.Theme.AppCompat.Light">
        <!-- We can use the platform styles on API 28+ -->
        <item name="dialogCornerRadius">?android:attr/dialogCornerRadius</item>
    </style>
</resources>

I don't really know where to start to look for an answer though it started with the downloading of version 28 SDK files when I clicked 'update' in the SDK Manager

-J
 
Last edited:

jimmyF

Active Member
Licensed User
Longtime User
The automatic updating of the SDK did NOT include the

"Android SDK Platform 28 (Android 28) version: 6"

Once I installed it, configured the new path to the new android.jar, everything was fine.

Good ol' stackoverflow.com :D

-J
 
Last edited:
Upvote 0
Top