Android Question Downloaded android sdk 35 but got warning, does it require attention to remedy?

Markos

Active Member
Licensed User
Longtime User
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?

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')
sdk35.png

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.
sdk35_build.png
 
Last edited:

Markos

Active Member
Licensed User
Longtime User
Hey Erel,

Many thanks, I was following the previous instructions to use B4a sdk manager.

The link for resources_7_25.zip seems to bum out at 533mb and then doesnt allow resume and starts over from the beginning of the file, I tried 4 times with no success. Is there an issue with the file , what should I do to get the file?

I got to download it finally, I dont know if you remedied after my msg or it was a network timing out issue. But I got the file and configured as you directed and all is well now!
 
Last edited:
Upvote 0

mcqueccu

Well-Known Member
Licensed User
Longtime User
Hey Erel,

Many thanks, I was following the previous instructions to use B4a sdk manager.

The link for resources_7_25.zip seems to bum out at 533mb and then doesnt allow resume and starts over from the beginning of the file, I tried 4 times with no success. Is there an issue with the file , what should I do to get the file?
Had similar issue, downloaded 4 times, using different browsers but it cuts along the line. And it was very slow.

Later I had to switch to my mobile to download it from there.
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
 
Upvote 0
Top