What is the final version of the ADT Bundle?

For historic reasons, I leave you the links to the last versions of ADT: linux 64 bit: http://dl.google.com/android/adt/adt-bundle-linux-x86_64-20140702.zip linux 32 bit: http://dl.google.com/android/adt/adt-bundle-linux-x86-20140702.zip MacOS X: http://dl.google.com/android/adt/adt-bundle-mac-x86_64-20140702.zip Win32: http://dl.google.com/android/adt/adt-bundle-windows-x86-20140702.zip Win64: http://dl.google.com/android/adt/adt-bundle-windows-x86_64-20140702.zip After that, you can update ADT plugin after 20140702 version. This answer was intended for the ones starting from zero.

Replace (or “Override”) String in Android Library Project

I have the same arrangement and this works for me as expected. The library has layout/class with this reference to a string resource: <TextView android:id=”@+id/studentSinceLabel”> The library provides a default value in its strings.xml: <string name=”studentSinceLabel”>Student Since</string> The main app has this value in its strings.xml: <string name=”studentSinceLabel”>Client Since</string> When I give a value for … Read more

ADT 22.2 New App Wizard: Unsupported template dependency: Upgrade your Android Eclipse plugin

Update 2: Now (2013-09-19T17:00:00Z) there’s an ADT 22.2.1 and Tools 22.2.1 updates available that fix this issue: Use Eclipse > Help > Check for Updates to get ADT 22.2.1 Use SDK Manager to get Tools 22.2.1 You need both parts to fix the issue. The ADT bundle and the installer package on http://developer.android.com/sdk/index.html have been … Read more

Will Eclipse ADT be Deprecated?

The Eclipse Android Developer Tools have been officially deprecated: Switch to Android Studio if you haven’t already! Will Eclipse ADT be deprecated when Android studio reach its first stable version? No. According to Xavier Ducrohet in this keynote the Android team will maintain the work on the ADT (At 00:35). Why the Android Team started … Read more