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 installing apk through adb
But 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-serverorddmsfrom your android sdk to enable adb serverOn your device set
USB Debugging modeto enabled, and connect your device to computer via USBrun
./adb devicesfrom within/platform-toolsfolderto view if your device is enabled correctly and visible to adb
run 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