We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VLC has 4 variant for the same version on f-droid :
https://f-droid.org/fr/packages/org.videolan.vlc/
When downloading with apkeep, it will always download the first variant found, here x86_64 :
Actually, there is no option to select the arm64-v8a variant (for example).
arm64-v8a
In fact, the following code always select the first element of the app_array :
apkeep/src/fdroid.rs
Line 264 in 704af2e
If we print the app_array struct, we can see all variants :
So it is possible to select a wanted arch by search for a nativecode that contains arm64_v8 for a specific version for example
nativecode
arm64_v8
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
VLC has 4 variant for the same version on f-droid :
https://f-droid.org/fr/packages/org.videolan.vlc/
Screenshot of apks variants
When downloading with apkeep, it will always download the first variant found, here x86_64 :
Actually, there is no option to select the
arm64-v8a
variant (for example).In fact, the following code always select the first element of the app_array :
apkeep/src/fdroid.rs
Line 264 in 704af2e
If we print the app_array struct, we can see all variants :
Click to expand
So it is possible to select a wanted arch by search for a
nativecode
that containsarm64_v8
for a specific version for exampleThe text was updated successfully, but these errors were encountered: