ImranR98 / Obtainium

Get Android app updates straight from the source.
https://obtainium.imranr.dev
GNU General Public License v3.0
7.4k stars 164 forks source link

Autodetect installed apps #1579

Closed GEkuL closed 5 months ago

GEkuL commented 5 months ago

Hi there,

I installed the Obtanium, but it seems that I have to manually add all the apps and their sources, which poses a bit of a challenge.

I saw a similar OSS project - https://github.com/rumboalla/apkupdater which seems to have this auto-detection feature, but lacks on a clear design (e.g. I want to see the exact source the binary is going to be downloaded from ).

Could you please add the auto-detection so it was easier for new users to join and start using the app?

DwainZwerg commented 5 months ago

Check previous issues (#223).

ImranR98 commented 5 months ago

Yes, this has been covered in previous issues. Auto detection would only work if there was a way to reliably get app IDs from sources without downloading the APKs first.

This is possible for some sources, but not for others like GitHub and GitLab which are the top most commonly used ones (also the custom HTML source).

From what I can tell, AppVerifier is able to do auto detection because it treats all sources as equal and grabs APKs from wherever they are available. In practice this means it usually suggests APKs from sites like ApkPure, Aptoide, etc. (which do provide app IDs) instead of places like GitHub which are usually more "direct from the developer" (in my testing, GitHub was suggested for just 1 app out of 30+ GitHub apps I have installed). This is a fine approach for those who prefer it, but not what Obtainium has gone for.

DwainZwerg commented 5 months ago

@ImranR98 Have you actually read this comment? It suggests to check if the app is signed by F-Droid or IzzyOnDroid and if this is not the case, to assume that the app comes from the source URL given on F-Droid (GitHub, GitLab, SourceForge, Codeberg) and has been signed. Wouldn't that be a method that is at least unreliable, but worth considering?

ImranR98 commented 5 months ago

@DwainZwerg missed that. Replied there.