You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.
Tried building this software and I got 'app-beta-aarch64-debug.apk' in the 'fenix>app>build>outputs>apk>betaAarch64>debug' but it fails to install on my Spreadtrum and Mediatek phones as well as Anbox, is there something I can do to get it to run? Thanks.
I fixed it by adding the following to the build.gradle:
splits {
// Configures multiple APKs based on ABI.
abi {
// Enables building multiple APKs per ABI.
enable true
// By default all ABIs are included, so use reset() and include to specify that we only
// want APKs for x86 and x86_64.
// Resets the list of ABIs that Gradle should create APKs for to none.
reset()
// Specifies a list of ABIs that Gradle should create APKs for.
include "armeabi-v7a", "arm64-v8a"
// Specifies that we do not want to also generate a universal APK that includes all ABIs.
universalApk false
}
}
Tried building this software and I got 'app-beta-aarch64-debug.apk' in the 'fenix>app>build>outputs>apk>betaAarch64>debug' but it fails to install on my Spreadtrum and Mediatek phones as well as Anbox, is there something I can do to get it to run? Thanks.
┆Issue is synchronized with this Jira Task
The text was updated successfully, but these errors were encountered: