I am developing a game using adobe AIR. I do not want to bundle the whole AIR run-time into my APK because it gets bigger in size. Instead I want to hookup with the startup of an application and check if adobe AIR is installed on the device. If it is not installed, I will send a user to Google play to download Adobe AIR.
My though was to make a native Android extension and code the process in Java just before the application starts. Until now I couldn't really find that place where I can do the check. Because as soon as the application starts and it doesn't find an AIR app installed , it crashes with exception : java.lang.UnsatisfiedLinkError: Native method not found: com.adobe.air.AIRWindowSurfaceView.nativeSurfaceCreated:()
Any ideas ?