exodify icon indicating copy to clipboard operation
exodify copied to clipboard

Offer to re-analyze an application if the most recent report is for an older version

Open Porkepix opened this issue 5 years ago • 2 comments

It could be nice to offer user to re-analyze an application if most recent available report is older than current application version. It's needed to pay attention to the disk usage load it could also bring, though.

Porkepix avatar Mar 12 '19 20:03 Porkepix

I need to detect the app version from the store page. It is sometimes available but only in the full details page of the app (e.g. for netflix the current version is not displayed on screen because it 'Varies with device').

BillCarsonFr avatar Mar 13 '19 13:03 BillCarsonFr

It could be possible to get some version information using this query in the app detail page: div.hAyfc:nth-child(4) > span:nth-child(2) > div:nth-child(1) > span:nth-child(1)

This could be :

  • The android:versionName: "1.8.0" (or anything the dev did enter :/)
  • Or an i18n string: "Varies with device" / "Varie selon les appareils."
android:versionName
    The version number shown to users. This attribute can be set as a raw string or as a reference to a string resource. The string has no other purpose than to be displayed to users. The versionCode attribute holds the significant version number used internally. 

BillCarsonFr avatar Mar 17 '19 11:03 BillCarsonFr