DImuthuUpe / AndroidPdfViewer

Android view for displaying PDFs rendered with PdfiumAndroid
Apache License 2.0
8.18k stars 1.91k forks source link

Failed to review my release #1046

Closed bagusflyer closed 3 years ago

bagusflyer commented 3 years ago

Got the following error message:

This release is not compliant with the Google Play 64-bit requirement. The following APKs or app bundles are available to 64-bit devices, but they only have 32-bit native code: [7] Include 64-bit and 32-bit native code in your app. Use the Android App Bundle publishing format to automatically ensure that each device architecture receives only the native code that it needs. This avoids increasing the overall size of your app.

Does this mean I'm not able to release my app to Google Play? Any idea? Thanks.

bagusflyer commented 3 years ago

Check the build.gradle:

ndk {
            abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'
        }

My previous build.gradle was:

ndk {
            abiFilters 'armeabi', 'armeabi-v7a', 'armeabi-v8a', 'x86', 'x86_64'
 }