Hi All,
I downloaded Android sdk 35 via B4A sdk manager and it completed successfully with a warning shown below, do I need to amend anything in the directory structure or I can ignore this warning?
Is the build steps correct and also manifest as related to sdk version attributes? in my manifest
I downloaded Android sdk 35 via B4A sdk manager and it completed successfully with a warning shown below, do I need to amend anything in the directory structure or I can ignore this warning?
B4X:
Warning: Observed package id 'cmdline-tools;8.0' in inconsistent location 'C:\Android\tools' (Expected 'C:\Android\cmdline-tools\8.0')
Warning: Observed package id 'tools' in inconsistent location 'C:\Android\tools-2' (Expected 'C:\Android\tools')
Warning: Observed package id 'cmdline-tools;8.0' in inconsistent location 'C:\Android\tools' (Expected 'C:\Android\cmdline-tools\8.0')
Warning: Observed package id 'tools' in inconsistent location 'C:\Android\tools-2' (Expected 'C:\Android\tools')
Is the build steps correct and also manifest as related to sdk version attributes? in my manifest
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: http://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="13" android:compileSdkVersion="33" 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$")
'SetApplicationAttribute(android:theme, "@android:style/Theme.Holo")
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>
)
'End of default text.
Last edited: