使用ANT +ECLIPSE 加快开发速度

 

使用ANT 代替编译。 
1. 先使用ant 建立 Build.xml,有关联的工程的都要先 重复这个过程
android update project -p ***
 
 
2. 使用ant命令 打包:
// Clean the project
ant clean

// Build a debug version
ant debug(推荐使用)

// Builds the debug version
// and installs it
ant debug install (不要用速度很慢)
// Build release 
ant release 
// 打包不签名:
ant package

3. 使用豌豆荚或者91助手 安装 生成的APK(待定), 使用这些工具的速度比较快
为什么呢??
4. 也可以手动使用adb install *** 安装到手机, 不推荐,速度比较慢。
 使用adbwireless 连接。 然后在cmd 里面输入: adb install connect 172.18.25.61:5555
使用adb devices 可以查看连接状态。

http://stackoverflow.com/questions/9026152/how-to-run-an-android-app-on-the-device-with-ant

Using the command provided by Navin I was able to create this ant target:

<target name="run"> <exec executable="adb"> <arg value="shell"/> <arg value="am"/> <arg value="start"/> <arg value="-a"/> <arg value="android.intent.action.MAIN"/> <arg value="-n"/> <arg value="{package.name}/{activity}"/> </exec> </target>

On the command line I execute:

ant debug install run

And it all works swimmingly

 

你可能感兴趣的:(eclipse)