[Learn Android while working on projects] Xiao Bai will encounter problems -- This Android SDK requires Android Developer Toolkit version 23.0.0 or abve, androidadt23.0.0
Problem description:
In the previous article, we talked about reducing the adt version to solve the Appcompat_V7 problem, so we changed the old version 22.3.0, re-opened Eclipse, and immediately popped up:
This Android SDK requires Android Developer Toolkit version 23.0.0 or above. Current version is 12.0.0.v201511281929-138431.
Generally, this is because the SDK is updated by mistake, causing the SDK version to be too high. ECLIPSE prompts that the ADT needs to be updated.
So I thought my sdk version was too high, so I opened the sdk manager and deleted 20 or more related things. The result still failed...
The solution is as follows:
FindPlugin. propModify the version number in the file to the same version number as the installed ATD. Here I will change 23.0.0 to 22.3.0.
Refer:
Http://blog.csdn.net/nieweiking/article/details/37047533
How to install the android sdk on 64-bit Windows 7
You have not configured JAVA environment variables.
On a Windows Server, right-click my computer, choose Properties> advanced, and click "environment variable". In the displayed dialog box:
System variable Configuration:
1. variable name: classpath
Variable value:.; C: \ Program Files \ Java \ jdk1.5.0 _ 06 \ lib \ tools. jar; C: \ Program Files \ Java \ jdk1.5.0 _ 06 \ bin
2. variable name: java_home
Variable value: C: \ Program Files \ Java \ jdk1.5.0 _ 06
3. variable name: path
Variable value: C: \ Program Files \ Java \ jdk1.5.0 _ 06 \ bin
User variable:
1. variable name: Path
Variable value: D: \ android \ android-sdk-windows-1.5_r2 \ tools
(Note: replace the above path with your local path)