Multidex for android api 20 and lower
Hello.
It looks like I found a problem with multidex in AIR SDK 25. It works properly with android API 21+. But sometimes I receive crash reports with "ClassNotFoundException" from devices with old android versions. After decompiling my application I found that some steps from android multidex enabling instruction are not performed:
Configure Apps with Over 64K Methods | Android Studio
Particularly, I found that my application tag (from AndroidManifest.xml) doesn't have android:name attribute. But the instruction clearly states that our minSDKVersion is set to 20 or lower, we need to use MultidesApplication as follows:
<application
android:name="android.support.multidex.MultiDexApplication" >
...
</application>
Or our Application class should extend MultiDexApplication class (and our application class should be in android:name attribute).
So, it looks like defects on your side influence my application. How can I fix it?
