Reputation: 17462
I have android app, size of my android apk file is 25MB. So while creating apk file I want to know how many Supported Architectures
is must, in order to reduce apk size.
Targeting 4.1 to 8.1 Android version.
Upvotes: 2
Views: 650
Reputation: 16572
If you check the answer here it gives you a brief idea on what abi's should be used while using xamarin android.
I would also like to add that x86
and x86_64
are usually emulators and hence Its okay if you don't have them in release mode, the other two namely armeabi-v7a
and arm64-v8a
are the abi's that cover the most devices so it is best that you have both of these in your release mode the other two are not required for real devices but mandatory for most emulators
Goodluck revert in case of queries
Upvotes: 1