Skip to content
New issue

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

Multi-arch APKs not supported with f-droid #192

Closed
BarbossHack opened this issue Oct 3, 2024 · 0 comments · Fixed by #193
Closed

Multi-arch APKs not supported with f-droid #192

BarbossHack opened this issue Oct 3, 2024 · 0 comments · Fixed by #193

Comments

@BarbossHack
Copy link
Contributor

BarbossHack commented Oct 3, 2024

VLC has 4 variant for the same version on f-droid :

  • x86_64
  • arm64-v8a
  • x86
  • armeabi-v7a

https://f-droid.org/fr/packages/org.videolan.vlc/

Screenshot of apks variants

2024-10-03_22-41

When downloading with apkeep, it will always download the first variant found, here x86_64 :

image

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 :

let fdroid_app = app_array[0].as_object().unwrap();

If we print the app_array struct, we can see all variants :

Click to expand

image

So it is possible to select a wanted arch by search for a nativecode that contains arm64_v8 for a specific version for example

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant