Home | History | Annotate | Download | only in releasetools

Lines Matching refs:apks

18 Check the signatures of all APKs in a target_files .zip file.  With
64 # (which is common with zipaligned APKs). This overrides the
254 self.apks = {}
262 self.apks[apk.package] = apk
277 for apk in self.apks.itervalues():
282 apks = apks_by_uid[uid]
283 for apk in apks[1:]:
284 if apk.certs != apks[0].certs:
293 for apk in apks:
316 for apk in self.apks.itervalues():
325 apks = by_cert[cert]
326 apks.sort()
327 for _, apk in apks:
341 all = set(self.apks.keys())
342 all.update(other.apks.keys())
349 if i in self.apks:
350 if i in other.apks:
352 if self.apks[i].certs != other.apks[i].certs:
353 by_certpair.setdefault((other.apks[i].certs,
354 self.apks[i].certs), []).append(i)
357 i, self.apks[i].filename)
359 if i in other.apks:
361 i, other.apks[i].filename)
364 AddProblem("some APKs changed certs")
378 old_fn = other.apks[i].filename
379 new_fn = self.apks[i].filename