obs1dium / BetterManual

An app for manual mode on Sony Alpha 5100 cameras
MIT License
38 stars 20 forks source link

Curious about the debugging setup, etc.. #3

Closed rub8n closed 7 years ago

rub8n commented 7 years ago

Hello!

Great starting point you put together here.

Could you provide some pointers around the project setup, debugging setup/workflow (do you debug against the camera itself, emulator or what?)?

Having those as part of a getting started would be really helpful to those who would like to better understand how this works.

Thanks!

obs1dium commented 7 years ago

I'm using AndroidStudio to build the project. You'll need the API level 10 SDK and 20.0.0 build tools.

You can only test on the camera itself, and there's no debugging mechanism... So the usual workflow looks something like this:

Since there's no debugging I simply output stuff to the screen or log to the SD card.

The Sony APIs are undocumented, so there's a lot of trial and error going on.

rub8n commented 7 years ago

Got it. Thanks for the info.. will try to look into this soon!