Netbeans Android - Compile & Test on real device (Unix, OSX)
I've read several questions about testing android apps on device.
I know possibility to upload APK to web storage, allow unsigned apps and run it I've read some solutions using Eclipse I've read about installingapk
through adb
Bu开发者_StackOverflow中文版t nothing about Netbeans.
So Is there some automated solution for OSX/UNIX systems and Netbeans?
Note, I'm currently using OSX 1.7 and Netbeans 7.0 with NBAndroid plugin, but question is related to Unix/OSX in common and Netbeans since 6.5 (or lower if it supports)
I will lay down answer myself, since nobody answered and I fugured it out:
Edit your Android manifest due to this manual: http://developer.android.com/guide/developing/device.html
<application android:debuggable="true" ... >
run
./adb start-server
orddms
from your android sdk to enable adb serverOn your device set
USB Debugging mode
to enabled, and connect your device to computer via USBrun
./adb devices
from within/platform-tools
folder
to view if your device is enabled correctly and visible to adbrun project in Netbeans (F6) and select your device in top half of window (in section
running devices
)your app should be running properly on your real device, to see logs, you can use
./platform-tools/adb logcat
-> debug messages in console./tools/ddms
-> gui to debug messages
精彩评论