Reputation: 2693
I created with Adobe Flash an .apk app through Air for Android. Now I would like to make it ready for the Blackberry App World with this Blackberry online packager: https://bdsc.webapps.blackberry.com/android/bpaa/apk-compatibility-check
Where to I find the Android SDK folder on my Windows PC? Is it bundle with the Adobe Flash Pro installation?
Upvotes: 52
Views: 182817
Reputation: 1
your SDK location contains non-ASCII characteres
la location est ici: C:\Users\Daffé\AppData\Local\Android\Sdk
Upvotes: 0
Reputation: 6382
You can find the path in the Android SDK Manager. On the top it lists the path, the default path in Windows is
C:\Users\%USERNAME%\AppData\Local\Android\sdk
and on Linux
/home/YourName/Android/Sdk/
Upvotes: 44
Reputation: 309
(for lazy devz like me who are looking for copy & paste with no edit)
You can actually use %LOCALAPPDATA%
! Just simply copy and paste the following in explorer
or RUN
%LOCALAPPDATA%\Android\Sdk
Upvotes: 2
Reputation: 330
If you are using Visual Studio you can find it in:
C:\Program Files (x86)\Android\android-sdk
If you want to access the Android SDK Manager you can find it inside VS folder:
C:\Program Files\Microsoft Visual Studio\{2022}{Community/Proffessional /Enterprise}\Common7\IDE\Extensions\Xamarin\AndroidSdkManager
Upvotes: 2
Reputation: 9
hi all i have been looking for a solution for almost 3 weeks .. finally i found the solution by my self. 1- go to search bar and wright sdk. 2- copy the file 3- go to \android and past it there
i hope it works with as worked with me ..
Upvotes: -2
Reputation: 325
Look for the local.properties
file in the file browser of Android Studio. It will contain the SDK location.
Upvotes: 6
Reputation: 611
If you are using windows,
C:\Users\{your_user}\AppData\Local\Android\sdk
hope this helps.
Upvotes: 8
Reputation: 331
Look it up with the Android SDK MAnager. It's not always obvious how to open up the Android SDK manager. First of all, SDK Manager is a feature of the Android Studio; open that. In Android Studio (as of version 2.3.3 in Windows), the SDK Manager is chosen by an icon on the big toolbar which has an incomprehensible glyph. If you can't find it, then instead you can select Tools-->Android-->SDK Manager. In the SDK Manager, select Appearance and Behavior-->System Settings-->Android SDK; and read the field "SDK Location". Hopefully you can figure out what you need from there.
I came to this question after having the same problem in the Unity game engine.
Upvotes: 3
Reputation: 11
When it says that it can only have ASCII characters in your username, if you try to use letters like Ç â ã
, it won't work. Try to change ã
to a
(without punctuation).
Upvotes: 1
Reputation: 17186
If you're using android studio then...
I configured with the defaults and the path, for me, is:
C:\Users\[account]\AppData\Local\Android\sdk
Upvotes: 135