Migrating Your Android App from Eclipse to Android Studio


One of the more exciting announcements from Google IO this year was the Android Team’s decision to release Android Studio. Android Studio isJetBrains’ IntelliJ IDEA with a brand new, extremely rich, Android-focused plugin. (It’s similar to Eclipse with the ADT package.) If you’re feeling adventurous, give it a spin by migrating one of your Eclipse apps.

Getting Started
First, you’ll need to update your SDK installation to the latest version. (Versions 22.0.0 and up will migrate your app to Android Studio.) After a few SDK Manager updates and restarts, you should see something like this:

Android Studio packages

Now you’re ready to export your application from Eclipse. Google choseGradle as the new Android build system, so we’ll generate the necessary build files first. From the Eclipse menu, choose ‘File’ and then click ‘Export’. Under the Android folder, you’ll find ‘Generate Gradle build files’:

Android Studio Generate Gradle build files

Choose the project you want to migrate and click ‘Finish’.  Next, exit Eclipse and fire up Android Studio. You’ll want to import an existing project. You can do it from the File menu or the wizard if you don’t have a project opened. Navigate to the directory containing your app and double click the build.gradle file:

Android Studio: Select File or Directory to Import

Now you’re almost there! Check ‘Use auto-import’ and select the Gradle wrapper. Or you can choose a Gradle distribution location if you have Gradle 1.6 installed. (This will skip the step of adding a few files to your project directory.) When you click ‘Finish’, Android Studio will perform a few housekeeping tasks and open your shiny new Gradle project. Hurray!

Android Studio: Import Project

Bonus Round
Now that you’re working happily in Android Studio, isn’t it time to add a little New Relic action to the mix? Don’t have a New Relic account? (Sign up for one today and get a free 30-day trial!)

First, merge the following into your build.gradle file:

buildscript {
   repositories {
     mavenCentral()
   }
   dependencies {
     classpath 'com.newrelic.agent.android:agent-gradle-plugin:+'
   }
}
 
repositories {
   mavenCentral()
}
 
apply plugin: 'android'
apply plugin: 'newrelic'
 
dependencies {
   compile 'com.newrelic.agent.android:android-agent:+'
}

Then add an import to your default Activity class:

import com.newrelic.agent.android.NewRelic;

And in the onCreate() method, add this call to initialize New Relic:

NewRelic.withApplicationToken( "<your mobile app token>" ).start( this .getApplication());

That’s it! We’d love to hear about your migration stories. Let us know your experiences in the comments below.

from:http://blog.newrelic.com/2013/06/07/migrating-your-android-app-from-eclipse-to-android-studio/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值