0

As service provider, I want to verify whether the client have published the same git commit apk, which I have reviewed.

Sachin Chauhan
  • 356
  • 1
  • 11

2 Answers2

1

If it is not being recorded during apk bundling, I believe it would be impossible to fetch. Have a look at this answer to get an idea of how to include a git hash.

Then there are two options
- Either feed that data up in some kind of Analytics (Preferred)
- Or you can go ahead and decompile your apk and hunt through the files.

Tanay
  • 33
  • 6
0

The only way you can easily check is build the APK yourself from the git commit, then check for code identity, maybe looking at the hash of the classes.dex files in the APK.

Nick Fortescue
  • 13,530
  • 1
  • 31
  • 37