Eclipse で Android アプリ開発ができなくなるという話

こんな.

ADTバンドル版のSDKはもう配布されないという情報があるようですが、本当でしょうか?
これからAndroidアプリを開発する場合は Android Studio を前提にしたほうがよいでしょうか。

Eclipseタグが追加されていますが、ADT(Android Development Tools)とAndroid SDK(Software Development Kit)と、IDEであるEclipseはそれぞれ別のものです。

質問の意図は、「ADTがバンドルされたEclipseが今後配布されるか?」かと思いますが、

http://developer.android.com/tools/help/adt.html

のNoteに、「もしADTと一緒にEclipseを利用している場合、現在の公式IDEがAndroid Studioであることを認識し、全ての最新のIDEアップデートを受け取るために、Android Studioへ移行しなければならない」とありますので、今後はAndroid Studio前提で考えた方がいいでしょう。

android - ADTバンドル版のSDKはもう配布されない? - スタック・オーバーフロー

If you have been using Eclipse with ADT, be aware that Android Studio is now the official IDE for Android, so you should migrate to Android Studio to receive all the latest IDE updates.

Android Studio 1.0 Officially Released, Eclipse With ADT No Longer In Active Development

この文章が見当たらないけど, どこにあるんだろう...

If you're a new Android developer, you should consider starting with Android Studio, because the ADT plugin for Eclipse is no longer in active development.

きっと,

「Eclipseで開発できなくはないが不自由になってくる」

てのが現実的な将来なのでしょう.

Installing_the_Eclipse_Plugin___Android_Developers

ADT Plugin Release Notes | Android Developers

Installing the Eclipse Plugin | Android Developers


ADT 22.6.0 となり Java7 で AndroidStudio をば。

こう書いてあるけど。

ADT 22.6.0 (March 2014)
・・・
Added support for Java 7 language features like multi-catch, try-with-resources, and the diamond operator. These features require version 19 or higher of the Build Tools. Try-with-resources requires minSdkVersion 19; the rest of the new language features require minSdkVersion 8 or higher.
・・・

ADT Plugin | Android Developers

以下のような状態だと。

o multi-catch
x try-with-resources
o diamond operator
o strings in switches

try-with-resource(リソース付きtry/勝手にclose) のみAPI19以降。

try (FileInputStream input = new FileInputStream("file.txt")) {
  int data = input.read();
  while(data != -1){
    System.out.print((char) data);
    data = input.read();
  }
}

なので、もうあげちゃいます Java6 から java7 へ。

続きを読む >>


Eclipse Android Plugin ADT11 がリリース!! - Android Tools Project Site

Google I/O で

アナウンスはされていたのですね。

 

GUIでビュー周りを作ったりできる

ようになってるのかしらん。

 

 

続きを読む >>


関連ワード:  Android開発