-
(all the discussion below is in context with Github repo that releases multiple apks in a single release)
The repo which I sourced in Obtainium has multiple apks in releases(all apks have different versions), all of their versions mentioned inside the asset-name (and consequently the asset link), and the release notes. I can filter out the apk with other options but am stuck when it comes to the version of that apk. How do I get the correct version of the app ? Some other questions regarding versions that I would also like answered ( if possible :) )0
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Version extraction works differently in the HTML source compared to all others:
While version extraction is about grabbing a version string from the source (for HTML) or modifying it (for others), version detection is about detecting what version of an app is currently installed on your phone. This is only done for apps where the OS-provided version can be directly compared with the source-provided version string. This is a convenience feature that is optional - turning version detection off will not affect you in most cases. For more details: https://github.com/ImranR98/Obtainium/wiki#version-detection To answer your third question, the version string for a release provided by a source (like GitHub's tags) have nothing to do with the APKs attached to that release (release assets on GitHub). "Use app versionCode as OS-detected version" just means that when version detection is enabled, we grab the app's The "version" you are shown in Obtainium is the version string provided by the source. This does not have to be the actual version of the app when it is installed in the OS - it just needs to be some unique identifier for that release. |
Beta Was this translation helpful? Give feedback.
-
In general, just leave settings at their defaults - they should work most of the time. |
Beta Was this translation helpful? Give feedback.
Version extraction works differently in the HTML source compared to all others:
v1.2.3-fdroid
, you may only want1.2.3
and can use version detection to accomplish that.While version extraction is about grabbing a version string from the source (for HTML) or modifying it (for others), version detection is about detecting what version of an …