Android Question Resource directory path, where should it go?

Beja

Expert
Licensed User
Longtime User
ERROR: resource directory 'C:\Users\Abc\Programming\android-sdk_r24.0.2-windows\extras\google\google_play_services\libproject\google-play-services_lib\res' does not exist

I have the above error from a project and want to change it to the path of the resource directory in my computer..
\couldn't find a (place) in Tools\configure paths) so where should I put this path?
Thanks in advance.
 

DonManfred

Expert
Licensed User
Longtime User
ERROR: resource directory 'C:\Users\Abc\Programming\android-sdk_r24.0.2-windows\extras\google\google_play_services\libproject\google-play-services_lib\res' does not exist
This error is related to a misconfigured #AdditionalRes attribute.
B4X:
#Region  Project Attributes
    #ApplicationLabel: B4A TEST2
    #VersionCode: 1
    #VersionName:
    'SupportedOrientations possible values: unspecified, landscape or portrait.
    #SupportedOrientations: unspecified
    #CanInstallToExternalStorage: False
    #AdditionalRes: C:\Users\Abc\Programming\android-sdk_r24.0.2-windows\extras\google\google_play_services\libproject\google-play-services_lib\res
#End Region

@Beja Change the #AdditionalRes attribute to fit the path on your pc
 
Upvote 0
Top