Skip to main content

Featured

Android studio “SDK tools directory is missing”

Following 2 possible solutions will resolve this problem :  Solution1 : To fix the problem, it was required that I list the path to my corporate PAC file by using  Configure -> "Appearance and Behavior" -> System Settings -> HTTP Proxy . I selected "Automatic proxy configuration url:" Delete your  ~/.Android*  folders (losing all of your settings :/). Run Android Studio. It will show you a welcome wizard where it tries to download the SDK again (and fails due to my rubbish internet). Click the X on the wizard window. That will enable you to get to the normal welcome dialog. Go to Settings->Project Defaults->Project Structure and change the Android SDK location to the correct one. Solution 2 : To fix the problem, it was required that I list the path to my corporate PAC file by using  Configure -> "Appearance and Behavior" -> System Settings -> HTTP Proxy . I selected "Automatic proxy configuration url:&quo

No resource found that matches the given name (at 'value' with value '@integer/google_play_services_version')

Here the problem is , you got missed to add google_play_services library to your project.
Remember your project and google_play_services library should locate in same folder.
So for everyone using eclipse, this is how need to do :
1) Eclipse -> import -> existing android code -> browse -> navigate to google-play-services_lib FOLDER (android-sdk/extras/google/google_play_services/libproject).                                          Then google_play_services library project successfully imported into your eclipse .
2) then, on your project, right click -> properties -> android -> libraries, add -> select the project you just imported -> ok
3) clean the project, then problem will resolve.

Comments