Home | History | Annotate | Download | only in releasetools

Lines Matching full:apks

18 Check the signatures of all APKs in a target_files .zip file.  With
60 # (which is common with zipaligned APKs). This overrides the
250 self.apks = {}
258 self.apks[apk.package] = apk
274 for apk in self.apks.itervalues():
279 apks = apks_by_uid[uid]
280 for apk in apks[1:]:
281 if apk.cert != apks[0].cert:
290 x = [(i.cert, i.package, i) for i in apks]
318 for apk in self.apks.itervalues():
326 apks = by_cert[cert]
327 apks.sort()
328 for _, apk in apks:
342 all = set(self.apks.keys())
343 all.update(other.apks.keys())
350 if i in self.apks:
351 if i in other.apks:
353 if self.apks[i].cert != other.apks[i].cert:
354 by_certpair.setdefault((other.apks[i].cert,
355 self.apks[i].cert), []).append(i)
358 i, self.apks[i].filename)
360 if i in other.apks:
362 i, other.apks[i].filename)
365 AddProblem("some APKs changed certs")
371 old_fn = other.apks[i].filename
372 new_fn = self.apks[i].filename