Android Question them issues sdk35 using to update

ibra939

Active Member
Licensed User
Longtime User
B4A Version: 13.40
Parsing code. (0.14s)
Java Version: 14
Building folders structure. (0.12s)
Running custom action. (0.06s)
Compiling code. (0.43s)
Compiling layouts code. (0.01s)
Organizing libraries. (0.00s)
(AndroidX SDK)
Compiling resources (0.58s)
Linking resources Error
res\values-v20\theme.xml:6: error: style attribute 'android:attr/windowOptOutEdgeToEdgeEnforcement' not found.
error: failed linking references.

i need to update sdk 35
 

asales

Expert
Licensed User
Longtime User
You need to update your custom theme (theme.xml) with this line:
<item name="android:windowOptOutEdgeToEdgeEnforcement">true</item>

Check this:
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Linking resources Error
res\values-v20\theme.xml:6: error: style attribute 'android:attr/windowOptOutEdgeToEdgeEnforcement' not found.
You did not updated the new Commandlinetools and Ressources?

Remember the Info on the 13.4 Releasepost:
Please download the updated command line tools and prepackaged resources: https://www.b4x.com/b4a.html
 
Last edited:
Upvote 0

ibra939

Active Member
Licensed User
Longtime User
You did not updated the new Commandlinetools and Ressources?

Remember the Info on the 13.4 Releasepost:
problem was
SetApplicationAttribute(android:theme, "@style/LightTheme")
CreateResource(values, colors.xml,
missing manifest
 
Upvote 0
Top