I am building my native Android extension for Flash. I just finished building my Android library.
How do I test it now?
- I want to test it under Android only
- I want to test it under flash
What is the best practice? Can I debug when testing in flash?
Flash player not supported native extensions. You can use it only in AIR runtime for Windows, OSX, Android and IOS. If your extension created for android you can test it only on android device in AIR application. You can debug your android application on device with your ide, and you can see java logs by Log class. For example: Log.i("some log info"); Use android ddms tool for see this logs.
Read this info