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
58 # (which is common with zipaligned APKs). This overrides the
233 self.apks = None
240 self.apks = {}
248 self.apks[apk.filename] = apk
263 for apk in self.apks.itervalues():
268 apks = apks_by_uid[uid]
269 for apk in apks[1:]:
270 if apk.certs != apks[0].certs:
279 for apk in apks:
302 for apk in self.apks.itervalues():
311 apks = by_cert[cert]
312 apks.sort()
313 for _, apk in apks:
326 all_apks = set(self.apks.keys())
327 all_apks.update(other.apks.keys())
334 if i in self.apks:
335 if i in other.apks:
337 if self.apks[i].certs != other.apks[i].certs:
338 by_certpair.setdefault((other.apks[i].certs,
339 self.apks[i].certs), []).append(i)
342 i, self.apks[i].filename)
344 if i in other.apks:
346 i, other.apks[i].filename)
349 AddProblem("some APKs changed certs")
363 old_fn = other.apks[i].filename
364 new_fn = self.apks[i].filename