def load(self, apk_path):
self.apk_path = apk_path
if apk_path.endswith(".apk"):
self.session_path = self.apk_path[:-4] + '.ag'
elif apk_path.endswith(".ag"):
self.session_path = apk_path
else:
return
self.start(QtCore.QThread.LowestPriority)
评论列表
文章目录