Rendra_HMD
Rendra_HMD

Reputation: 18

Examining code in android take long time

how to examining code in android, i'm using eclipse Juno when I try to checking simple code ( 1 line coding like)

Log.d("check", "1234567890".substring(5,7); 

in Eclipse, I have to compile, build, upload and installing to emulator that spent some minute.....

is there any trick to figure it out faster?

in visual basic, was have quick view window to check or examining syntact. Is it able for eclipse examining code without building and compiling to emulator or device..? thanks for advise

Upvotes: 0

Views: 59

Answers (1)

Dogcat
Dogcat

Reputation: 300

  1. Switch to Android Studio.
  2. Switch to gradle.
  3. Set gradle version to 2.0 or higher.
  4. Enjoy the instant run option.

And yeah, both AndroidStuido and Intellij Idea do code inspections without having to re-build your app.

Upvotes: 1

Related Questions