"No repository found" - updating of Android ADT via Eclipse
adt, android, eclipse
Solution
Sometimes, updating directly from Developer.android.com generally gives these kind of issues. As mentioned in android site "Troubleshooting ADT Installation", please download the zip "ADT-22.6.3.zip" and do NOT UNZIP it.
Then, follow below steps:
- Start Eclipse, then select Help > Install New Software.
- Click Add, in the top-right corner. In the Add Repository dialog, click Archive.
- Select the downloaded ADT-22.6.3.zip file and click OK.
- Enter "ADT Plugin" for the name and click OK.
- In the Available Software dialog, select the checkbox next to Developer Tools and click Next.
- In the next window, you'll see a list of the tools to be downloaded. Click Next.
- Read and accept the license agreements, then click Finish.
- If you get a security warning saying that the authenticity or validity of the software can't be established, click OK.
- When the installation completes, restart Eclipse.
To update your plugin once you've installed using the zip file, you will have to follow these steps again instead of the default update instructions.
Problem
I have the `Android SDK/ADT` bundle installed, with Eclipse running. First odd thing is, when I click "Check for updates" it says there are none available. Although when I instead click "Install new software" and select the built-in android dl site, there IS an update to the ADT available, which is slightly newer than what's installed. Anyway that's not my problem.. So, I checkmark the available update(s), and try to install it. After a couple minutes of progress, I get the following error message: ``` [Problem Occurred] 'Installing Software' has encountered a problem. An error occurred while collecting items to be installed -----(I click 'Details' and this is what is shown): session context was:(profile=profile, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=). No repository found containing:osgi.bundle,com.android.ide.eclipse.adt,22.6.3.v201404151837-1123206 No repository found containing: osgi.bundle,com.android.ide.eclipse.adt.package,22.6.3.v201404151837-1123206 No repository found containing:osgi.bundle,com.android.ide.eclipse.base,22.6.3.v201404151837-1123206 No repository found containing:osgi.bundle,com.android.ide.eclipse.ddms,22.6.3.v201404151837-1123206 No repository found containing:osgi.bundle,com.android.ide.eclipse.gldebugger,22.6.3.v201404151837-1123206 No repository found containing:osgi.bundle,com.android.ide.eclipse.hierarchyviewer,22.6.3.v201404151837-1123206 No repository found containing:osgi.bundle,com.android.ide.eclipse.ndk,22.6.3.v201404151837-1123206 No repository found containing:osgi.bundle,com.android.ide.eclipse.traceview,22.6.3.v201404151837-1123206 No repository found containing: osgi.bundle,overlay.com.android.ide.eclipse.adt.overlay,22.6.3.v201404151837-1123206 No repository found containing: org.eclipse.update.feature,com.android.ide.eclipse.adt,22.6.3.v201404151837-1123206 No repository found containing: org.eclipse.update.feature,com.android.ide.eclipse.ddms,22.6.3.v201404151837-1123206 No repository found containing: org.eclipse.update.feature,com.android.ide.eclipse.gldebugger,22.6.3.v201404151837-1123206 No repository found containing: org.eclipse.update.feature,com.android.ide.eclipse.hierarchyviewer,22.6.3.v201404151837-1123206 No repository found containing: org.eclipse.update.feature,com.android.ide.eclipse.ndk,22.6.3.v201404151837-1123206 No repository found containing: org.eclipse.update.feature,com.android.ide.eclipse.traceview,22.6.3.v201404151837-1123206 ``` Can anybody please help me identify the problem, and how to fix it? I would greatly appreciate some help with this. Thanks in advance!