We are currently planning to update the application.
However, the application is pending with the error below.
-------------------------------------------------------------------- ------------------
Android method number 65k limit During publishing process, the app exceeded 65k reference limit. Please enable multidexing your app or use ProGuard to reduce methods and resubmit the app. More info here.
-------------------------------------------------------------------- ------------------
It is Gradle setting of my application.
minSdkVersion 21
multiDexEnabled true
minifyEnabled true
I attempted to reduce the number of methods by applying proguard, but since it exceeds 65,536, we are doing multiDexEnabled.
Also, since minSdkVersion is set to 21, I think Multidex support library is unnecessary.
Looking at https://developer.amazon.com/en/docs/app-submission/avoid-compile-errors.html, I think there is no problem.
Is not it possible to publish apk exceeding 65536 method in the Amazon App Store?
I installed the application from apk on Fire tablet, but there was no problem in operation verification.
Thank you for your answer.