700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > 【Android 逆向】APK 文件处理脚本 ApkTool.py ( 脚本简介 | 用法 | 分析 APK 文件 )

【Android 逆向】APK 文件处理脚本 ApkTool.py ( 脚本简介 | 用法 | 分析 APK 文件 )

时间:2022-02-11 23:41:53

相关推荐

【Android 逆向】APK 文件处理脚本 ApkTool.py ( 脚本简介 | 用法 | 分析 APK 文件 )

文章目录

一、APK 文件处理脚本 ApkTool.py二、ApkTool.py 脚本用法三、ApkTool.py 脚本分析 APK 输出结果

一、APK 文件处理脚本 ApkTool.py

ApkTool.py 是一个 APK 文件处理脚本 , 主要针对 APK 文件进行各种处理 , 如文件分析 ;

该脚本需要使用 apktool.jar 和 aapt.exe 工具 , 将这两个文件放在 ApkTool.py 同级目录中 ;

完整运行环境参考 /han120/APK ;

ApkTool.py 脚本内容 :

# coding=utf-8import osimport sysimport argparsefrom subprocess import Popen, PIPEimport sysreload(sys)sys.setdefaultencoding('utf8')class ApkTool:def __init__(self, keystore=None, password=None, alias=None):if sys.platform == 'win32':self.file_separator = '\\'else:self.file_separator = '/'path = ''if hasattr(sys, '_MEIPASS'):path = sys._MEIPASS + self.file_separatorself.apktooljar = path + 'apktool.jar'self.aapt = path + 'aapt.exe'self.objdump_x86 = path + 'objdump_x86.exe'self.objdump_arm = path + 'objdump_arm.exe'if keystore is None:self.keystore = path + 'mykey-123456.keystore'else:self.keystore = keystoreif password is None:self.password = '123456'else:self.password = passwordif alias is None:self.alias = 'mykey'else:self.alias = aliasself.cur_apk = {}returndef unpack(self, apk, path):cmd = 'java -jar ' + self.apktooljar + (' d -f -o %s %s' % (path, apk))os.system(cmd)returndef pack(self, path, apk):cmd = 'java -jar ' + self.apktooljar + (' b %s -o %s' % (path, apk))os.system(cmd)returndef sign(self, apk, signed_apk):path, file = os.path.split(signed_apk)if os.path.exists(path) is False:os.makedirs(path)keystore = ' -keystore %s -storepass %s' % (self.keystore, self.password)signedjar = ' -signedjar %s %s -digestalg SHA1 -sigalg MD5withRSA %s' % (signed_apk, apk, self.alias)cmd = 'jarsigner -verbose ' + keystore + signedjarprint(cmd)os.system(cmd)def get_apk_label(self, apk_path):pipe = Popen([self.aapt, 'dump', 'badging', apk_path], stdout=PIPE)if pipe is not None:while True:line = pipe.stdout.readline()line = line.decode('utf-8')if len(line) == 0:breakpos = line.find('application-label:')if pos != -1:return line[pos + 19:len(line) - 3] # \r\n占了2个,加上单引号一共3个字符return ''def get_apk_package_name(self, apk):pipe = Popen([self.aapt, 'dump', 'badging', apk], stdout=PIPE)if pipe is not None:while True:line = pipe.stdout.readline()line = line.decode('utf-8')if len(line) == 0:breakpos = line.find('package:')if pos != -1:return line[pos + 8:len(line) - 2] # \r\n占了2个,加上单引号一共3个字符return ''def get_game_engine(libpath, file_separator):data = {'libcocos2dcpp.so': 'cocos引擎 cpp','libcocos2dlua.so': 'cocos引擎 lua','libcocos2djs.so': 'cocos引擎 javascipt','libunity.so': 'unity3D引擎','libgdx.so': 'libgdx引擎'}dir = ['armeabi-v7a', 'armeabi', 'x86']for d in dir:lib = libpath + d + file_separatorfor f in data.keys():if os.path.exists(lib + f):return data[f]return '未知引擎'def analyse(apk, tool):path, file = os.path.split(apk)if len(path) == 0:path = '.'out_name = file[:-4]out_txt = out_name + '.txt'f_out = open(out_txt, 'w+')line = '文件名称:%s\n' % apkf_out.write(line)line = '应用名称:%s\n' % tool.get_apk_label(apk)f_out.write(line)line = '应用信息:%s\n' % tool.get_apk_package_name(apk)f_out.write(line)unpack_path = path + tool.file_separator + 'unpack' + tool.file_separator + out_nameif os.path.exists(unpack_path) is False:os.makedirs(unpack_path)repack_path = path + tool.file_separator + 'repack' + tool.file_separator + out_name + '.apk'if os.path.exists(path + tool.file_separator + 'repack') is False:os.makedirs(path + tool.file_separator + 'repack')sign_path = path + tool.file_separator + 'sign' + tool.file_separator + out_name + '.apk'if os.path.exists(path + tool.file_separator + 'sign') is False:os.makedirs(path + tool.file_separator + 'sign')if os.path.exists(unpack_path + tool.file_separator + 'lib') is False:tool.unpack(apk, unpack_path)if os.path.exists(repack_path) is False:tool.pack(unpack_path, repack_path)if os.path.exists(sign_path) is False:tool.sign(repack_path, sign_path)if os.path.exists(repack_path) is False:line = '打包检测:重打包失败,无法重打包\n'else:line = '打包检测:重打包成功\n'is_repack_ok = Truef_out.write(line)if os.path.exists(sign_path) is False:line = '签名检测:重签名失败,无法重签名\n'else:line = '签名检测:重签名成功\n'f_out.write(line)libpath = unpack_path + tool.file_separatorlibpath += 'lib' + tool.file_separatorline = '引擎检测:%s\n' % get_game_engine(libpath, tool.file_separator)f_out.write(line)f_out.write('----------------------------------------------------------------------------------------------------------------------------------\n')f_out.close()passdef main():parser = argparse.ArgumentParser(prog=sys.argv[0], usage='%(prog)s [options]')help = """help 或者 -h 显示本帮助文档 """parser.add_argument('-help', help=help, action='store_const', const='help')parser.add_argument('-keystore', nargs='?', help='指定签名文件,默认mykey-123456.keystore')parser.add_argument('-passwd', nargs='?', help='指定签名密码,默认123456')parser.add_argument('-alias', nargs='?', help='指定签名别名,默认mykey')parser.add_argument('-label', help='获取包名', action='store_const', const='label')parser.add_argument('-unpack', help='解包文件', action='store_const', const='unpack')parser.add_argument('-pack', help='打包文件', action='store_const', const='pack')parser.add_argument('-sign', help='签名文件', action='store_const', const='sign')parser.add_argument('-analyse', help='分析包', action='store_const', const='analyse')parser.add_argument('-inapk', nargs='?', help='指定输入apk路径')parser.add_argument('-outapk', nargs='?', help='指定输出apk路径')parser.add_argument('-outpath', nargs='?', help='指定输出目录')parser.add_argument('-inpath', nargs='?', help='指定输入目录')args = parser.parse_args()if args.help is not None:parser.print_help()returnattrs = ['keystore', 'passwd', 'alias', 'inapk', 'outapk', 'inpath', 'outpath', 'help']value_map = {}for attr in attrs:value_map[attr] = getattr(args, attr, None)tool = ApkTool(value_map['keystore'], value_map['passwd'], value_map['alias'])if args.unpack is not None:# -unpack -inapk D:\bamenGame\测试游戏\17.12.18jhzd.apk -outpath D:\bamenGame\测试游戏\out\17.12.18jhzdif value_map['inapk'] is None:print('需要指定输入apk路径')returnif value_map['outpath'] is None:print('需要指定输出目录')returntool.unpack(value_map['inapk'], value_map['outpath'])returnif args.pack is not None:# -pack -outapk D:\bamenGame\测试游戏\repack\17.12.18jhzd.apk -inpath D:\bamenGame\测试游戏\out\17.12.18jhzdif value_map['inpath'] is None:print('需要指定输入目录')returnif value_map['outapk'] is None:print('需要指定输出包路径')returntool.pack(value_map['inpath'], value_map['outapk'])returnif args.sign is not None:# -sign -inapk D:\bamenGame\测试游戏\repack\17.12.18jhzd.apk -outapk D:\bamenGame\测试游戏\sign\17.12.18jhzd.apkif value_map['inapk'] is None:print('需要指定输入目录')returnif value_map['outapk'] is None:print('需要指定输出包路径')returntool.sign(value_map['inapk'], value_map['outapk'])returnif args.label is not None:if value_map['inapk'] is None:print('需要指定输入游戏包')returnprint(tool.get_apk_label(value_map['inapk']))returnif args.analyse is not None:if value_map['inapk'] is None:print('需要指定输入游戏包,现在分析当前目录下所有的apk文件')for file in os.listdir(os.curdir):if os.path.isdir(file):continueif os.path.splitext(file)[1] == '.apk':analyse(file, tool)returnanalyse(value_map['inapk'], tool)returnparser.print_help()if __name__ == '__main__':main()

二、ApkTool.py 脚本用法

执行如下命令 , 分析 apk 文件 ;

python ApkTool.py -analyse -inapk apk/app-debug.apk

分析结果会放在 ApkTool.py 脚本所在目录的 app-debug.txt 文件中 , app-debug 是 apk 文件的名称 , 后缀改为 txt ;

分析完毕的内容如下 :

文件名称:apk/app-debug.apk应用名称:EventBus_Demo应用信息: name='com.eventbus_demo' versionCode='1' versionName='1.0' platformBuildVersionName=''打包检测:重打包成功签名检测:重签名成功引擎检测:未知引擎----------------------------------------------------------------------------------------------------------------------------------

如果文件比较多的话 , 通宵跑程序 ;

如果应用做了加固处理 , 是无法进行重打包的 ;

三、ApkTool.py 脚本分析 APK 输出结果

执行输出内容 :

Microsoft Windows [版本 10.0.19041.1237](c) Microsoft Corporation。保留所有权利。D:\002_Project\011_Python\APK>python -VPython 2.7.18D:\002_Project\011_Python\APK>python ApkTool.py -analyse -inapk apk/app-debug.apkI: Using Apktool 2.3.3 on app-debug.apkI: Loading resource table...I: Decoding AndroidManifest.xml with resources...S: WARNING: Could not write to (C:\Users\octop\AppData\Local\apktool\framework), using C:\Users\octop\AppData\Local\Temp\ instead...S: Please be aware this is a volatile directory and frameworks could go missing, please utilize --frame-path if the default storage directory is unavailableI: Loading resource table from file: C:\Users\octop\AppData\Local\Temp\1.apkI: Regular manifest package...I: Decoding file-resources...I: Decoding values */* XMLs...I: Baksmaling classes.dex...I: Copying assets and libs...I: Copying unknown files...I: Copying original files...I: Using Apktool 2.3.3I: Checking whether sources has changed...I: Smaling smali folder into classes.dex...I: Checking whether resources has changed...I: Building resources...S: WARNING: Could not write to (C:\Users\octop\AppData\Local\apktool\framework), using C:\Users\octop\AppData\Local\Temp\ instead...S: Please be aware this is a volatile directory and frameworks could go missing, please utilize --frame-path if the default storage directory is unavailableI: Building apk file...I: Copying unknown files/dir...I: Built apk...jarsigner -verbose -keystore mykey-123456.keystore -storepass 123456 -signedjar apk\sign\app-debug.apk apk\repack\app-debug.apk -digestalg SHA1 -sigalg MD5withRSA mykey正在添加: META-INF/MANIFEST.MF正在添加: META-INF/MYKEY.SF正在添加: META-INF/MYKEY.RSA正在签名: AndroidManifest.xml正在签名: classes.dex正在签名: res/anim/abc_fade_in.xml正在签名: res/anim/abc_fade_out.xml正在签名: res/anim/abc_grow_fade_in_from_bottom.xml正在签名: res/anim/abc_popup_enter.xml正在签名: res/anim/abc_popup_exit.xml正在签名: res/anim/abc_shrink_fade_out_from_bottom.xml正在签名: res/anim/abc_slide_in_bottom.xml正在签名: res/anim/abc_slide_in_top.xml正在签名: res/anim/abc_slide_out_bottom.xml正在签名: res/anim/abc_slide_out_top.xml正在签名: res/anim/abc_tooltip_enter.xml正在签名: res/anim/abc_tooltip_exit.xml正在签名: res/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml正在签名: res/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml正在签名: res/anim/btn_checkbox_to_checked_icon_null_animation.xml正在签名: res/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml正在签名: res/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml正在签名: res/anim/btn_checkbox_to_unchecked_icon_null_animation.xml正在签名: res/anim/btn_radio_to_off_mtrl_dot_group_animation.xml正在签名: res/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml正在签名: res/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml正在签名: res/anim/btn_radio_to_on_mtrl_dot_group_animation.xml正在签名: res/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml正在签名: res/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml正在签名: res/anim/design_bottom_sheet_slide_in.xml正在签名: res/anim/design_bottom_sheet_slide_out.xml正在签名: res/anim/design_snackbar_in.xml正在签名: res/anim/design_snackbar_out.xml正在签名: res/anim/fragment_fast_out_extra_slow_in.xml正在签名: res/anim/mtrl_bottom_sheet_slide_in.xml正在签名: res/anim/mtrl_bottom_sheet_slide_out.xml正在签名: res/anim/mtrl_card_lowers_interpolator.xml正在签名: res/anim-v21/design_bottom_sheet_slide_in.xml正在签名: res/anim-v21/design_bottom_sheet_slide_out.xml正在签名: res/anim-v21/fragment_fast_out_extra_slow_in.xml正在签名: res/anim-v21/mtrl_bottom_sheet_slide_in.xml正在签名: res/anim-v21/mtrl_bottom_sheet_slide_out.xml正在签名: res/animator/design_fab_hide_motion_spec.xml正在签名: res/animator/design_fab_show_motion_spec.xml正在签名: res/animator/fragment_close_enter.xml正在签名: res/animator/fragment_close_exit.xml正在签名: res/animator/fragment_fade_enter.xml正在签名: res/animator/fragment_fade_exit.xml正在签名: res/animator/fragment_open_enter.xml正在签名: res/animator/fragment_open_exit.xml正在签名: res/animator/linear_indeterminate_line1_head_interpolator.xml正在签名: res/animator/linear_indeterminate_line1_tail_interpolator.xml正在签名: res/animator/linear_indeterminate_line2_head_interpolator.xml正在签名: res/animator/linear_indeterminate_line2_tail_interpolator.xml正在签名: res/animator/mtrl_btn_state_list_anim.xml正在签名: res/animator/mtrl_btn_unelevated_state_list_anim.xml正在签名: res/animator/mtrl_card_state_list_anim.xml正在签名: res/animator/mtrl_chip_state_list_anim.xml正在签名: res/animator/mtrl_extended_fab_change_size_collapse_motion_spec.xml正在签名: res/animator/mtrl_extended_fab_change_size_expand_motion_spec.xml正在签名: res/animator/mtrl_extended_fab_hide_motion_spec.xml正在签名: res/animator/mtrl_extended_fab_show_motion_spec.xml正在签名: res/animator/mtrl_extended_fab_state_list_animator.xml正在签名: res/animator/mtrl_fab_hide_motion_spec.xml正在签名: res/animator/mtrl_fab_show_motion_spec.xml正在签名: res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml正在签名: res/animator/mtrl_fab_transformation_sheet_expand_spec.xml正在签名: res/animator-v19/mtrl_btn_state_list_anim.xml正在签名: res/animator-v19/mtrl_card_state_list_anim.xml正在签名: res/animator-v21/design_appbar_state_list_animator.xml正在签名: res/color/abc_background_cache_hint_selector_material_dark.xml正在签名: res/color/abc_background_cache_hint_selector_material_light.xml正在签名: res/color/abc_btn_colored_borderless_text_material.xml正在签名: res/color/abc_btn_colored_text_material.xml正在签名: res/color/abc_hint_foreground_material_dark.xml正在签名: res/color/abc_hint_foreground_material_light.xml正在签名: res/color/abc_primary_text_disable_only_material_dark.xml正在签名: res/color/abc_primary_text_disable_only_material_light.xml正在签名: res/color/abc_primary_text_material_dark.xml正在签名: res/color/abc_primary_text_material_light.xml正在签名: res/color/abc_search_url_text.xml正在签名: res/color/abc_secondary_text_material_dark.xml正在签名: res/color/abc_secondary_text_material_light.xml正在签名: res/color/abc_tint_btn_checkable.xml正在签名: res/color/abc_tint_default.xml正在签名: res/color/abc_tint_edittext.xml正在签名: res/color/abc_tint_seek_thumb.xml正在签名: res/color/abc_tint_spinner.xml正在签名: res/color/abc_tint_switch_track.xml正在签名: res/color/checkbox_themeable_attribute_color.xml正在签名: res/color/design_box_stroke_color.xml正在签名: res/color/design_error.xml正在签名: res/color/design_icon_tint.xml正在签名: res/color/material_cursor_color.xml正在签名: res/color/material_on_background_disabled.xml正在签名: res/color/material_on_background_emphasis_high_type.xml正在签名: res/color/material_on_background_emphasis_medium.xml正在签名: res/color/material_on_primary_disabled.xml正在签名: res/color/material_on_primary_emphasis_high_type.xml正在签名: res/color/material_on_primary_emphasis_medium.xml正在签名: res/color/material_on_surface_disabled.xml正在签名: res/color/material_on_surface_emphasis_high_type.xml正在签名: res/color/material_on_surface_emphasis_medium.xml正在签名: res/color/material_on_surface_stroke.xml正在签名: res/color/material_slider_active_tick_marks_color.xml正在签名: res/color/material_slider_active_track_color.xml正在签名: res/color/material_slider_halo_color.xml正在签名: res/color/material_slider_inactive_tick_marks_color.xml正在签名: res/color/material_slider_inactive_track_color.xml正在签名: res/color/material_slider_thumb_color.xml正在签名: res/color/material_timepicker_button_background.xml正在签名: res/color/material_timepicker_button_stroke.xml正在签名: res/color/material_timepicker_clockface.xml正在签名: res/color/material_timepicker_clock_text_color.xml正在签名: res/color/material_timepicker_modebutton_tint.xml正在签名: res/color/mtrl_btn_bg_color_selector.xml正在签名: res/color/mtrl_btn_ripple_color.xml正在签名: res/color/mtrl_btn_stroke_color_selector.xml正在签名: res/color/mtrl_btn_text_btn_bg_color_selector.xml正在签名: res/color/mtrl_btn_text_btn_ripple_color.xml正在签名: res/color/mtrl_btn_text_color_selector.xml正在签名: res/color/mtrl_calendar_item_stroke_color.xml正在签名: res/color/mtrl_calendar_selected_range.xml正在签名: res/color/mtrl_card_view_foreground.xml正在签名: res/color/mtrl_card_view_ripple.xml正在签名: res/color/mtrl_chip_background_color.xml正在签名: res/color/mtrl_chip_close_icon_tint.xml正在签名: res/color/mtrl_chip_surface_color.xml正在签名: res/color/mtrl_chip_text_color.xml正在签名: res/color/mtrl_choice_chip_background_color.xml正在签名: res/color/mtrl_choice_chip_ripple_color.xml正在签名: res/color/mtrl_choice_chip_text_color.xml正在签名: res/color/mtrl_error.xml正在签名: res/color/mtrl_fab_bg_color_selector.xml正在签名: res/color/mtrl_fab_icon_text_color_selector.xml正在签名: res/color/mtrl_fab_ripple_color.xml正在签名: res/color/mtrl_filled_background_color.xml正在签名: res/color/mtrl_filled_icon_tint.xml正在签名: res/color/mtrl_filled_stroke_color.xml正在签名: res/color/mtrl_indicator_text_color.xml正在签名: res/color/mtrl_navigation_bar_colored_item_tint.xml正在签名: res/color/mtrl_navigation_bar_colored_ripple_color.xml正在签名: res/color/mtrl_navigation_bar_item_tint.xml正在签名: res/color/mtrl_navigation_bar_ripple_color.xml正在签名: res/color/mtrl_navigation_item_background_color.xml正在签名: res/color/mtrl_navigation_item_icon_tint.xml正在签名: res/color/mtrl_navigation_item_text_color.xml正在签名: res/color/mtrl_on_primary_text_btn_text_color_selector.xml正在签名: res/color/mtrl_on_surface_ripple_color.xml正在签名: res/color/mtrl_outlined_icon_tint.xml正在签名: res/color/mtrl_outlined_stroke_color.xml正在签名: res/color/mtrl_popupmenu_overlay_color.xml正在签名: res/color/mtrl_tabs_colored_ripple_color.xml正在签名: res/color/mtrl_tabs_icon_color_selector.xml正在签名: res/color/mtrl_tabs_icon_color_selector_colored.xml正在签名: res/color/mtrl_tabs_legacy_text_color_selector.xml正在签名: res/color/mtrl_tabs_ripple_color.xml正在签名: res/color/mtrl_text_btn_text_color_selector.xml正在签名: res/color/radiobutton_themeable_attribute_color.xml正在签名: res/color/switch_thumb_material_dark.xml正在签名: res/color/switch_thumb_material_light.xml正在签名: res/color/test_mtrl_calendar_day.xml正在签名: res/color/test_mtrl_calendar_day_selected.xml正在签名: res/color-night/material_timepicker_button_stroke.xml正在签名: res/color-night/material_timepicker_clockface.xml正在签名: res/color-night/material_timepicker_modebutton_tint.xml正在签名: res/color-v21/abc_btn_colored_borderless_text_material.xml正在签名: res/color-v23/abc_btn_colored_borderless_text_material.xml正在签名: res/color-v23/abc_btn_colored_text_material.xml正在签名: res/color-v23/abc_color_highlight_material.xml正在签名: res/color-v23/abc_tint_btn_checkable.xml正在签名: res/color-v23/abc_tint_default.xml正在签名: res/color-v23/abc_tint_edittext.xml正在签名: res/color-v23/abc_tint_seek_thumb.xml正在签名: res/color-v23/abc_tint_spinner.xml正在签名: res/color-v23/abc_tint_switch_track.xml正在签名: res/drawable/$avd_hide_password__0.xml正在签名: res/drawable/$avd_hide_password__1.xml正在签名: res/drawable/$avd_hide_password__2.xml正在签名: res/drawable/$avd_show_password__0.xml正在签名: res/drawable/$avd_show_password__1.xml正在签名: res/drawable/$avd_show_password__2.xml正在签名: res/drawable/abc_btn_borderless_material.xml正在签名: res/drawable/abc_btn_check_material.xml正在签名: res/drawable/abc_btn_check_material_anim.xml正在签名: res/drawable/abc_btn_colored_material.xml正在签名: res/drawable/abc_btn_default_mtrl_shape.xml正在签名: res/drawable/abc_btn_radio_material.xml正在签名: res/drawable/abc_btn_radio_material_anim.xml正在签名: res/drawable/abc_cab_background_internal_bg.xml正在签名: res/drawable/abc_cab_background_top_material.xml正在签名: res/drawable/abc_dialog_material_background.xml正在签名: res/drawable/abc_edit_text_material.xml正在签名: res/drawable/abc_ic_ab_back_material.xml正在签名: res/drawable/abc_ic_arrow_drop_right_black_24dp.xml正在签名: res/drawable/abc_ic_clear_material.xml正在签名: res/drawable/abc_ic_go_search_api_material.xml正在签名: res/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml正在签名: res/drawable/abc_ic_menu_cut_mtrl_alpha.xml正在签名: res/drawable/abc_ic_menu_overflow_material.xml正在签名: res/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml正在签名: res/drawable/abc_ic_menu_selectall_mtrl_alpha.xml正在签名: res/drawable/abc_ic_menu_share_mtrl_alpha.xml正在签名: res/drawable/abc_ic_search_api_material.xml正在签名: res/drawable/abc_ic_voice_search_api_material.xml正在签名: res/drawable/abc_item_background_holo_dark.xml正在签名: res/drawable/abc_item_background_holo_light.xml正在签名: res/drawable/abc_list_divider_material.xml正在签名: res/drawable/abc_list_selector_background_transition_holo_dark.xml正在签名: res/drawable/abc_list_selector_background_transition_holo_light.xml正在签名: res/drawable/abc_list_selector_holo_dark.xml正在签名: res/drawable/abc_list_selector_holo_light.xml正在签名: res/drawable/abc_ratingbar_indicator_material.xml正在签名: res/drawable/abc_ratingbar_material.xml正在签名: res/drawable/abc_ratingbar_small_material.xml正在签名: res/drawable/abc_seekbar_thumb_material.xml正在签名: res/drawable/abc_seekbar_tick_mark_material.xml正在签名: res/drawable/abc_seekbar_track_material.xml正在签名: res/drawable/abc_spinner_textfield_background_material.xml正在签名: res/drawable/abc_star_black_48dp.xml正在签名: res/drawable/abc_star_half_black_48dp.xml正在签名: res/drawable/abc_switch_thumb_material.xml正在签名: res/drawable/abc_tab_indicator_material.xml正在签名: res/drawable/abc_textfield_search_material.xml正在签名: res/drawable/abc_text_cursor_material.xml正在签名: res/drawable/abc_vector_test.xml正在签名: res/drawable/avd_hide_password.xml正在签名: res/drawable/avd_show_password.xml正在签名: res/drawable/btn_checkbox_checked_mtrl.xml正在签名: res/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml正在签名: res/drawable/btn_checkbox_unchecked_mtrl.xml正在签名: res/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml正在签名: res/drawable/btn_radio_off_mtrl.xml正在签名: res/drawable/btn_radio_off_to_on_mtrl_animation.xml正在签名: res/drawable/btn_radio_on_mtrl.xml正在签名: res/drawable/btn_radio_on_to_off_mtrl_animation.xml正在签名: res/drawable/design_fab_background.xml正在签名: res/drawable/design_ic_visibility.xml正在签名: res/drawable/design_ic_visibility_off.xml正在签名: res/drawable/design_password_eye.xml正在签名: res/drawable/design_snackbar_background.xml正在签名: res/drawable/ic_clock_black_24dp.xml正在签名: res/drawable/ic_keyboard_black_24dp.xml正在签名: res/drawable/ic_mtrl_checked_circle.xml正在签名: res/drawable/ic_mtrl_chip_checked_black.xml正在签名: res/drawable/ic_mtrl_chip_checked_circle.xml正在签名: res/drawable/ic_mtrl_chip_close_circle.xml正在签名: res/drawable/material_cursor_drawable.xml正在签名: res/drawable/material_ic_calendar_black_24dp.xml正在签名: res/drawable/material_ic_clear_black_24dp.xml正在签名: res/drawable/material_ic_edit_black_24dp.xml正在签名: res/drawable/material_ic_keyboard_arrow_left_black_24dp.xml正在签名: res/drawable/material_ic_keyboard_arrow_right_black_24dp.xml正在签名: res/drawable/material_ic_menu_arrow_down_black_24dp.xml正在签名: res/drawable/material_ic_menu_arrow_up_black_24dp.xml正在签名: res/drawable/mtrl_dialog_background.xml正在签名: res/drawable/mtrl_dropdown_arrow.xml正在签名: res/drawable/mtrl_ic_arrow_drop_down.xml正在签名: res/drawable/mtrl_ic_arrow_drop_up.xml正在签名: res/drawable/mtrl_ic_cancel.xml正在签名: res/drawable/mtrl_ic_error.xml正在签名: res/drawable/mtrl_navigation_bar_item_background.xml正在签名: res/drawable/mtrl_popupmenu_background.xml正在签名: res/drawable/mtrl_popupmenu_background_dark.xml正在签名: res/drawable/mtrl_tabs_default_indicator.xml正在签名: res/drawable/navigation_empty_icon.xml正在签名: res/drawable/notification_bg.xml正在签名: res/drawable/notification_bg_low.xml正在签名: res/drawable/notification_icon_background.xml正在签名: res/drawable/notification_tile_bg.xml正在签名: res/drawable/test_custom_background.xml正在签名: res/drawable/tooltip_frame_dark.xml正在签名: res/drawable/tooltip_frame_light.xml正在签名: res/drawable-anydpi-v21/ic_launcher_background.xml正在签名: res/drawable-anydpi-v24/$ic_launcher_foreground__0.xml正在签名: res/drawable-anydpi-v24/ic_launcher_foreground.xml正在签名: res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png正在签名: res/drawable-v21/abc_action_bar_item_background_material.xml正在签名: res/drawable-v21/abc_btn_colored_material.xml正在签名: res/drawable-v21/abc_dialog_material_background.xml正在签名: res/drawable-v21/abc_edit_text_material.xml正在签名: res/drawable-v21/abc_list_divider_material.xml正在签名: res/drawable-v21/material_cursor_drawable.xml正在签名: res/drawable-v21/mtrl_navigation_bar_item_background.xml正在签名: res/drawable-v21/notification_action_background.xml正在签名: res/drawable-v23/abc_control_background_material.xml正在签名: res/drawable-v23/mtrl_popupmenu_background_dark.xml正在签名: res/drawable-watch-v20/abc_dialog_material_background.xml正在签名: res/drawable-xhdpi/notification_bg_low_normal.9.png正在签名: res/drawable-xhdpi/notification_bg_low_pressed.9.png正在签名: res/drawable-xhdpi/notification_bg_normal.9.png正在签名: res/drawable-xhdpi/notification_bg_normal_pressed.9.png正在签名: res/drawable-xhdpi/notify_panel_notification_icon_bg.png正在签名: res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png正在签名: res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png正在签名: res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png正在签名: res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png正在签名: res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png正在签名: res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png正在签名: res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png正在签名: res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png正在签名: res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png正在签名: res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png正在签名: res/drawable-xxhdpi/abc_list_focused_holo.9.png正在签名: res/drawable-xxhdpi/abc_list_longpressed_holo.9.png正在签名: res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png正在签名: res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png正在签名: res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png正在签名: res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png正在签名: res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png正在签名: res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png正在签名: res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png正在签名: res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png正在签名: res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png正在签名: res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png正在签名: res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png正在签名: res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png正在签名: res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png正在签名: res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png正在签名: res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png正在签名: res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png正在签名: res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png正在签名: res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png正在签名: res/drawable-xxhdpi/abc_text_select_handle_left_mtrl.png正在签名: res/drawable-xxhdpi/abc_text_select_handle_middle_mtrl.png正在签名: res/drawable-xxhdpi/abc_text_select_handle_right_mtrl.png正在签名: res/drawable-xxhdpi/ic_launcher_background.png正在签名: res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml正在签名: res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml正在签名: res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml正在签名: res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml正在签名: res/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml正在签名: res/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml正在签名: res/interpolator/fast_out_slow_in.xml正在签名: res/interpolator/mtrl_fast_out_linear_in.xml正在签名: res/interpolator/mtrl_fast_out_slow_in.xml正在签名: res/interpolator/mtrl_linear.xml正在签名: res/interpolator/mtrl_linear_out_slow_in.xml正在签名: res/interpolator-v21/mtrl_fast_out_linear_in.xml正在签名: res/interpolator-v21/mtrl_fast_out_slow_in.xml正在签名: res/interpolator-v21/mtrl_linear_out_slow_in.xml正在签名: res/layout/abc_action_bar_title_item.xml正在签名: res/layout/abc_action_bar_up_container.xml正在签名: res/layout/abc_action_menu_item_layout.xml正在签名: res/layout/abc_action_menu_layout.xml正在签名: res/layout/abc_action_mode_bar.xml正在签名: res/layout/abc_action_mode_close_item_material.xml正在签名: res/layout/abc_activity_chooser_view.xml正在签名: res/layout/abc_activity_chooser_view_list_item.xml正在签名: res/layout/abc_alert_dialog_button_bar_material.xml正在签名: res/layout/abc_alert_dialog_material.xml正在签名: res/layout/abc_alert_dialog_title_material.xml正在签名: res/layout/abc_cascading_menu_item_layout.xml正在签名: res/layout/abc_dialog_title_material.xml正在签名: res/layout/abc_expanded_menu_layout.xml正在签名: res/layout/abc_list_menu_item_checkbox.xml正在签名: res/layout/abc_list_menu_item_icon.xml正在签名: res/layout/abc_list_menu_item_layout.xml正在签名: res/layout/abc_list_menu_item_radio.xml正在签名: res/layout/abc_popup_menu_header_item_layout.xml正在签名: res/layout/abc_popup_menu_item_layout.xml正在签名: res/layout/abc_screen_content_include.xml正在签名: res/layout/abc_screen_simple.xml正在签名: res/layout/abc_screen_simple_overlay_action_mode.xml正在签名: res/layout/abc_screen_toolbar.xml正在签名: res/layout/abc_search_dropdown_item_icons_2line.xml正在签名: res/layout/abc_search_view.xml正在签名: res/layout/abc_select_dialog_material.xml正在签名: res/layout/abc_tooltip.xml正在签名: res/layout/activity_main.xml正在签名: res/layout/custom_dialog.xml正在签名: res/layout/design_bottom_navigation_item.xml正在签名: res/layout/design_bottom_sheet_dialog.xml正在签名: res/layout/design_layout_snackbar.xml正在签名: res/layout/design_layout_snackbar_include.xml正在签名: res/layout/design_layout_tab_icon.xml正在签名: res/layout/design_layout_tab_text.xml正在签名: res/layout/design_menu_item_action_area.xml正在签名: res/layout/design_navigation_item.xml正在签名: res/layout/design_navigation_item_header.xml正在签名: res/layout/design_navigation_item_separator.xml正在签名: res/layout/design_navigation_item_subheader.xml正在签名: res/layout/design_navigation_menu.xml正在签名: res/layout/design_navigation_menu_item.xml正在签名: res/layout/design_text_input_end_icon.xml正在签名: res/layout/design_text_input_start_icon.xml正在签名: res/layout/material_chip_input_combo.xml正在签名: res/layout/material_clockface_textview.xml正在签名: res/layout/material_clockface_view.xml正在签名: res/layout/material_clock_display.xml正在签名: res/layout/material_clock_display_divider.xml正在签名: res/layout/material_clock_period_toggle.xml正在签名: res/layout/material_radial_view_group.xml正在签名: res/layout/material_textinput_timepicker.xml正在签名: res/layout/material_timepicker.xml正在签名: res/layout/material_timepicker_dialog.xml正在签名: res/layout/material_timepicker_textinput_display.xml正在签名: res/layout/material_time_chip.xml正在签名: res/layout/material_time_input.xml正在签名: res/layout/mtrl_alert_dialog.xml正在签名: res/layout/mtrl_alert_dialog_actions.xml正在签名: res/layout/mtrl_alert_dialog_title.xml正在签名: res/layout/mtrl_alert_select_dialog_item.xml正在签名: res/layout/mtrl_alert_select_dialog_multichoice.xml正在签名: res/layout/mtrl_alert_select_dialog_singlechoice.xml正在签名: res/layout/mtrl_calendar_day.xml正在签名: res/layout/mtrl_calendar_days_of_week.xml正在签名: res/layout/mtrl_calendar_day_of_week.xml正在签名: res/layout/mtrl_calendar_horizontal.xml正在签名: res/layout/mtrl_calendar_month.xml正在签名: res/layout/mtrl_calendar_months.xml正在签名: res/layout/mtrl_calendar_month_labeled.xml正在签名: res/layout/mtrl_calendar_month_navigation.xml正在签名: res/layout/mtrl_calendar_vertical.xml正在签名: res/layout/mtrl_calendar_year.xml正在签名: res/layout/mtrl_layout_snackbar.xml正在签名: res/layout/mtrl_layout_snackbar_include.xml正在签名: res/layout/mtrl_navigation_rail_item.xml正在签名: res/layout/mtrl_picker_actions.xml正在签名: res/layout/mtrl_picker_dialog.xml正在签名: res/layout/mtrl_picker_fullscreen.xml正在签名: res/layout/mtrl_picker_header_dialog.xml正在签名: res/layout/mtrl_picker_header_fullscreen.xml正在签名: res/layout/mtrl_picker_header_selection_text.xml正在签名: res/layout/mtrl_picker_header_title_text.xml正在签名: res/layout/mtrl_picker_header_toggle.xml正在签名: res/layout/mtrl_picker_text_input_date.xml正在签名: res/layout/mtrl_picker_text_input_date_range.xml正在签名: res/layout/notification_action.xml正在签名: res/layout/notification_action_tombstone.xml正在签名: res/layout/notification_template_custom_big.xml正在签名: res/layout/notification_template_icon_group.xml正在签名: res/layout/notification_template_part_chronometer.xml正在签名: res/layout/notification_template_part_time.xml正在签名: res/layout/select_dialog_item_material.xml正在签名: res/layout/select_dialog_multichoice_material.xml正在签名: res/layout/select_dialog_singlechoice_material.xml正在签名: res/layout/support_simple_spinner_dropdown_item.xml正在签名: res/layout/test_action_chip.xml正在签名: res/layout/test_chip_zero_corner_radius.xml正在签名: res/layout/test_design_checkbox.xml正在签名: res/layout/test_design_radiobutton.xml正在签名: res/layout/test_navigation_bar_item_layout.xml正在签名: res/layout/test_reflow_chipgroup.xml正在签名: res/layout/test_toolbar.xml正在签名: res/layout/test_toolbar_custom_background.xml正在签名: res/layout/test_toolbar_elevation.xml正在签名: res/layout/test_toolbar_surface.xml正在签名: res/layout/text_view_without_line_height.xml正在签名: res/layout/text_view_with_line_height_from_appearance.xml正在签名: res/layout/text_view_with_line_height_from_layout.xml正在签名: res/layout/text_view_with_line_height_from_style.xml正在签名: res/layout/text_view_with_theme_line_height.xml正在签名: res/layout-land/material_clock_period_toggle_land.xml正在签名: res/layout-land/material_timepicker.xml正在签名: res/layout-land/mtrl_picker_header_dialog.xml正在签名: res/layout-ldrtl/material_textinput_timepicker.xml正在签名: res/layout-sw600dp/design_layout_snackbar.xml正在签名: res/layout-sw600dp/mtrl_layout_snackbar.xml正在签名: res/layout-v21/abc_screen_toolbar.xml正在签名: res/layout-v21/notification_action.xml正在签名: res/layout-v21/notification_action_tombstone.xml正在签名: res/layout-v21/notification_template_custom_big.xml正在签名: res/layout-v21/notification_template_icon_group.xml正在签名: res/layout-v21/test_design_checkbox.xml正在签名: res/layout-v21/test_design_radiobutton.xml正在签名: res/layout-v21/test_toolbar_elevation.xml正在签名: res/layout-v22/abc_alert_dialog_button_bar_material.xml正在签名: res/layout-v22/material_timepicker_dialog.xml正在签名: res/layout-v22/mtrl_alert_dialog_actions.xml正在签名: res/layout-v26/abc_screen_toolbar.xml正在签名: res/layout-v26/mtrl_calendar_month.xml正在签名: res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml正在签名: res/layout-watch-v20/abc_alert_dialog_title_material.xml正在签名: res/mipmap-anydpi-v26/ic_launcher.xml正在签名: res/mipmap-anydpi-v26/ic_launcher_round.xml正在签名: res/mipmap-hdpi/ic_launcher.png正在签名: res/mipmap-hdpi/ic_launcher_round.png正在签名: res/mipmap-mdpi/ic_launcher.png正在签名: res/mipmap-mdpi/ic_launcher_round.png正在签名: res/mipmap-xhdpi/ic_launcher.png正在签名: res/mipmap-xhdpi/ic_launcher_round.png正在签名: res/mipmap-xxhdpi/ic_launcher.png正在签名: res/mipmap-xxhdpi/ic_launcher_round.png正在签名: res/mipmap-xxxhdpi/ic_launcher.png正在签名: res/mipmap-xxxhdpi/ic_launcher_round.png正在签名: res/xml/standalone_badge.xml正在签名: res/xml/standalone_badge_gravity_bottom_end.xml正在签名: res/xml/standalone_badge_gravity_bottom_start.xml正在签名: res/xml/standalone_badge_gravity_top_start.xml正在签名: res/xml/standalone_badge_offset.xml正在签名: resources.arscjar 已签名。警告:未提供 -tsa 或 -tsacert, 此 jar 没有时间戳。如果没有时间戳, 则在签名者证书的到期日期 (2044-10-28) 或以后的任何撤销日期之后, 用户可能无法验证此 jar。D:\002_Project\011_Python\APK>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。