Updated SDK not running lower SDK? - android

Even though it shows that I have version 25 of the SDK, this app doesn't run. I have downloaded this app from here. I got this link from an online course at Udacity.
Please help as to how I should run this app. It's important to learn this as it's a part of my tutorial course.

In your IDE, the error log shows you that you must install SDK Build tools 23.0.2 and sync your project. Simply click that link and the IDE should handle it for you.
Although you have build tools 25.2.4, 23.0.2 is required to build this project.
Also, the repository from which your project is from also states the prerequisites in the README:
Pre-requisites
Android SDK v23
Android Build Tools v23.0.2
Android Support Repository v23.3.0

Related

How do I configure Android SDKs for Android Studio 3.2.1?

I downloaded the latest version (3.2.1) of Android Studio from the Android Developers site.
After installing the application, it won't start. I get an error message when clicking on "Start a new Android Studio project":
Your Android SDK is missing, out of date or corrupted.
I read an outdated post dealing with the same issue but an older version of the application. I followed the solution described there and got stuck after navigating to Configure > Project Defaults > Project Structure. This is the window I see right now:
I can't find the SDK. Where is it located? Does it not get installed together with the app? If so, where can I download it from?
I can't find the SDK. Where is it located? Does it not get installed
together with the app? If so, where can I download it from?
That depends on how you installed the Android Studio. With the SDK packages (called bundle) or you have installed it separately which doesn't have SDK packages.
Where is it located
It's mostly uses:
C:\Users\<username>\AppData\Local\Android\Sdk
Directory on windows if you install SDK Manager, it will be easy to figured out.
where can I download it from
After installing Android SDK Manager, you'll need to download some packages like;
Platform-tools
Build-tools
Support library
And etc
To be able to compile-use Android Studio which is a general question and use Google for that.

What is the Last Version of the Eclipse ADT plugin

I have always coded android apps using eclipse as opposed to android studio simply because i find it faster than android studio. However because google has deprecated eclipse as the official IDE for android.They also stopped developing android developer tools (ADT) plugin.
For purposes of the layout renderer in eclipse, I need to know what was the last version of Android Developer Tools plugin for eclipse to be ever released by google before it was deprecated?
The last version of ADT tools should be ADT-23.0.7.
I've never managed to find something newer than that.
In the official annoucement it states:
Android tools inside Eclipse will continue to live on in the open source community via the Eclipse Foundation. Check out the latest Eclipse Andmore project if you are interested in contributing or learning more.

Error while importing cordova project to android studio

I'm getting following error when im trying to import a cordova project.
But i have build tools 19.1, 20 and higher.
I have latest cordova version 5.1.1
please refer the below image.
This is my SDK manager.
I have checked lot of stackoverflow questions. But no use
Any help appreciated.
The Android Build Tools are part of the official Android SDK. You can install them by clicking Tools -> Android -> SDK Manager, then find and check the required build tools and click "Install X packages...".
Check if you have that specific version (19.1.0) since there are 5 19.x versions.
This was the problem with my SDK Bundle.I have re-downloaded the whole sdk package and my error gone.

Problems importing/refreshing Gradle project in Android Studio

I have updated Android Studio from version .2.0 to .3.1 and when I start Studio it displayed the following error message:
"Problems importing/refreshing Gradle project 'Second':Unresolved
dependencies: com.android.support:appcompat-v7:+ Search"
As per my answer on AndroidStudio - Gradle Refresh Failed
You probably need to update the Bundled Android SDK that comes with Studio:
Tools-> Android-> SDK Manager
I did a blog post about Android Studio Gotchas which also mentions this.
For some reason they totally ignore any Android SDK you may have manually installed and use their own. So selecting the SDK through the IDE makes sure you use the correct one. You need to ensure you have the latest compatibility library.
You may also need to restart the IDE after updating. I did in any case, can't remember if it was essential.

google-play-services_lib.jar missing after updating to latest version (3.1)

I've been using Google play services in my app for a while with no prob. I'm using Eclipse. I've updated play services(and ADT and SDK) to the latest version after I/O and now I can not get my app to build. I have added the google-play-services_lib project to my app as a library project. However when I go to the java build path for my project I get a red X next to google-play-services_lib under android dependencies. It is looking in the /bin/ dir for google-play-services_lib.jar, however it is never build. Anyone run into this issue?
Converting comment to answer
After updating Android SDK and ADT make sure you have Android Build tools installed.
Goto your android sdk manager check if Andorid Build Tools is installed. If not installed install the same.
So simple, I don't know how I missed it. Right click on the project library and select build project. I forgot I had turned project > build automatically off.

Categories

Resources