jakev / dtfmods-core

Core content for Android device testing
Apache License 2.0
6 stars 2 forks source link

Map out different system signing keys #41

Open jakev opened 8 years ago

jakev commented 8 years ago

Right now, there is no indication of the platform, shared, and media signing keys. These should be mapped and saved.

jakev commented 8 years ago

By modifying parse_signatures() of sysappdb, we can save the output of the following command:

$ keytool -jarfile path/to/app.apk -rfc -printcert 

We can then create some additional modules to run tests to determine if test keys are present.

jakev commented 8 years ago

Need to do more research here.