├── .gitignore
├── .idea
├── compiler.xml
├── gradle.xml
├── jarRepositories.xml
├── misc.xml
├── vcs.xml
└── workspace.xml
├── PngEditor
├── .gitignore
├── build.gradle
├── proguard-rules.pro
└── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── java
│ └── com
│ │ ├── gmail
│ │ └── heagoo
│ │ │ └── pngeditor
│ │ │ ├── HelpActivity.java
│ │ │ ├── ImageEditor.java
│ │ │ ├── PngEditActivity.java
│ │ │ ├── WebViewActivity.java
│ │ │ └── editor
│ │ │ ├── RemoveBackground.java
│ │ │ ├── Resize.java
│ │ │ └── Transparency.java
│ │ └── polites
│ │ └── android
│ │ ├── Animation.java
│ │ ├── Animator.java
│ │ ├── FlingAnimation.java
│ │ ├── FlingAnimationListener.java
│ │ ├── FlingListener.java
│ │ ├── GestureImageView.java
│ │ ├── GestureImageViewListener.java
│ │ ├── GestureImageViewTouchListener.java
│ │ ├── MathUtils.java
│ │ ├── MoveAnimation.java
│ │ ├── MoveAnimationListener.java
│ │ ├── VectorF.java
│ │ ├── ZoomAnimation.java
│ │ └── ZoomAnimationListener.java
│ └── res
│ ├── drawable-hdpi
│ ├── ic_close.png
│ ├── ic_www.png
│ ├── pngeditor_check.png
│ ├── pngeditor_cross.png
│ └── pngeditor_save_white.png
│ ├── drawable
│ ├── pngeditor_arrowleft.xml
│ ├── pngeditor_clickable_img_bg.xml
│ ├── pngeditor_coloritem_blue.xml
│ ├── pngeditor_coloritem_grey.xml
│ └── pngeditor_seekbar.xml
│ ├── layout
│ ├── pngeditor_actionbar.xml
│ ├── pngeditor_activity.xml
│ ├── pngeditor_bgcolor.xml
│ ├── pngeditor_dlg_size_input.xml
│ ├── pngeditor_help.xml
│ └── pngeditor_scale_options.xml
│ ├── menu
│ ├── pngeditor_main.xml
│ └── pngeditor_webview.xml
│ ├── raw
│ ├── pngeditor_help.htm
│ ├── pngeditor_tool_removebg.jpg
│ ├── pngeditor_tool_resize.jpg
│ ├── pngeditor_tool_transparent.jpg
│ └── pngeditor_tools_menu.jpg
│ ├── values-v21
│ └── styles.xml
│ └── values
│ ├── colors.xml
│ ├── strings.xml
│ └── styles.xml
├── README.md
├── _AndroidCommon
├── build.gradle
└── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── java
│ └── com
│ │ └── gmail
│ │ └── heagoo
│ │ └── common
│ │ ├── ActivityUtil.java
│ │ ├── ApkInfoParser.java
│ │ ├── CheckUtil.java
│ │ ├── ClipboardUtil.java
│ │ ├── CommandInterface.java
│ │ ├── CommandRunner.java
│ │ ├── CustomizedLangActivity.java
│ │ ├── Display.java
│ │ ├── DynamicExpandListView.java
│ │ ├── FileEncrypter.java
│ │ ├── FileUtil.java
│ │ ├── HexUtil.java
│ │ ├── ICommonCallback.java
│ │ ├── IOUtils.java
│ │ ├── ITaskCallback.java
│ │ ├── ImageTool.java
│ │ ├── ImageZoomer.java
│ │ ├── InputUtil.java
│ │ ├── JarUtil.java
│ │ ├── MD5.java
│ │ ├── NotProguard.java
│ │ ├── PackageUtil.java
│ │ ├── Pair.java
│ │ ├── PathUtil.java
│ │ ├── PreferenceUtil.java
│ │ ├── ProcessingDialog.java
│ │ ├── RandomUtil.java
│ │ ├── RefInvoke.java
│ │ ├── RootChecker.java
│ │ ├── RootCommand.java
│ │ ├── SDCard.java
│ │ ├── ServiceUtil.java
│ │ ├── StorageUtils.java
│ │ ├── StringUtil.java
│ │ ├── TextFileReader.java
│ │ ├── UriUtil.java
│ │ └── ZipUtil.java
│ └── res
│ ├── drawable
│ ├── commonutil_progressbar.xml
│ └── shape_roundcorner.xml
│ ├── layout
│ └── dlg_processing.xml
│ └── values
│ ├── strings.xml
│ └── styles.xml
├── _AndroidEditor
├── build.gradle
└── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── java
│ └── com
│ │ └── gmail
│ │ └── heagoo
│ │ └── neweditor
│ │ ├── Change.java
│ │ ├── ColorTheme.java
│ │ ├── DefaultTokenHandler.java
│ │ ├── Document.java
│ │ ├── EditorActivity.java
│ │ ├── Encoding.java
│ │ ├── InputMethodWatcher.java
│ │ ├── KeywordMap.java
│ │ ├── ObEditText.java
│ │ ├── ObHorizontalScrollView.java
│ │ ├── ObScrollView.java
│ │ ├── ParserRule.java
│ │ ├── ParserRuleSet.java
│ │ ├── ScrollViewListener.java
│ │ ├── Segment.java
│ │ ├── SegmentCharSequence.java
│ │ ├── StandardUtilities.java
│ │ ├── SyntaxHighlightSpan.java
│ │ ├── SyntaxUtilities.java
│ │ ├── TextSelectionListener.java
│ │ ├── TextUtilities.java
│ │ ├── Token.java
│ │ ├── TokenHandler.java
│ │ ├── TokenMarker.java
│ │ ├── TokenMerger.java
│ │ └── XmlSyntaxParser.java
│ └── res
│ ├── drawable-hdpi
│ ├── edit_colorpad.png
│ ├── edit_colorpad_new.png
│ ├── edit_config.png
│ ├── edit_copy.png
│ ├── edit_find.png
│ ├── edit_go.png
│ ├── edit_go_dark.png
│ ├── edit_ignorecase.png
│ ├── edit_ignorecase_dark.png
│ ├── edit_regexp.png
│ ├── edit_regexp_dark.png
│ ├── edit_replace.png
│ ├── edit_replace_dark.png
│ ├── edit_replaceall.png
│ ├── edit_replaceall_dark.png
│ ├── edit_save.png
│ ├── edit_search.png
│ ├── edit_search_dark.png
│ ├── edit_slide_left.png
│ └── edit_slide_right.png
│ ├── drawable
│ ├── coloritem_11.xml
│ ├── coloritem_33.xml
│ └── selector_iv_button.xml
│ ├── layout
│ └── editorutil_main.xml
│ └── values
│ └── strings.xml
├── apkEditor
├── build.gradle
└── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── java
│ ├── apkeditor
│ │ ├── Image.java
│ │ ├── Test.java
│ │ └── Utils.java
│ ├── brut
│ │ ├── androlib
│ │ │ ├── AndrolibException.java
│ │ │ ├── err
│ │ │ │ ├── AXmlDecodingException.java
│ │ │ │ ├── CantFind9PatchChunk.java
│ │ │ │ ├── RawXmlEncounteredException.java
│ │ │ │ └── UndefinedResObject.java
│ │ │ └── res
│ │ │ │ ├── data
│ │ │ │ ├── CountingInputStream.java
│ │ │ │ ├── LEDataInputStream.java
│ │ │ │ ├── ResConfig.java
│ │ │ │ ├── ResConfigFlags.java
│ │ │ │ ├── ResID.java
│ │ │ │ ├── ResPackage.java
│ │ │ │ ├── ResResSpec.java
│ │ │ │ ├── ResResource.java
│ │ │ │ ├── ResTable.java
│ │ │ │ ├── ResType.java
│ │ │ │ ├── ResTypeSpec.java
│ │ │ │ ├── ResUnknownFiles.java
│ │ │ │ ├── ResValuesFile.java
│ │ │ │ └── value
│ │ │ │ │ ├── ResArrayValue.java
│ │ │ │ │ ├── ResAttr.java
│ │ │ │ │ ├── ResBagValue.java
│ │ │ │ │ ├── ResBoolValue.java
│ │ │ │ │ ├── ResColorValue.java
│ │ │ │ │ ├── ResDimenValue.java
│ │ │ │ │ ├── ResEmptyValue.java
│ │ │ │ │ ├── ResEnumAttr.java
│ │ │ │ │ ├── ResFileValue.java
│ │ │ │ │ ├── ResFlagsAttr.java
│ │ │ │ │ ├── ResFloatValue.java
│ │ │ │ │ ├── ResFractionValue.java
│ │ │ │ │ ├── ResIdValue.java
│ │ │ │ │ ├── ResIntBasedValue.java
│ │ │ │ │ ├── ResIntValue.java
│ │ │ │ │ ├── ResPluralsValue.java
│ │ │ │ │ ├── ResReferenceValue.java
│ │ │ │ │ ├── ResScalarValue.java
│ │ │ │ │ ├── ResStringValue.java
│ │ │ │ │ ├── ResStyleValue.java
│ │ │ │ │ ├── ResValue.java
│ │ │ │ │ └── ResValueFactory.java
│ │ │ │ ├── decoder
│ │ │ │ ├── ARSCDecoder.java
│ │ │ │ ├── AXmlResourceParser.java
│ │ │ │ ├── Res9patchStreamDecoder.java
│ │ │ │ ├── ResAttrDecoder.java
│ │ │ │ ├── ResFileDecoder.java
│ │ │ │ ├── ResRawStreamDecoder.java
│ │ │ │ ├── ResStreamDecoder.java
│ │ │ │ ├── ResStreamDecoderContainer.java
│ │ │ │ ├── ResourceIdProvider.java
│ │ │ │ ├── StringBlock.java
│ │ │ │ └── XmlPullStreamDecoder.java
│ │ │ │ ├── util
│ │ │ │ ├── ExtFile.java
│ │ │ │ ├── ExtXmlSerializer.java
│ │ │ │ └── VersionInfo.java
│ │ │ │ └── xml
│ │ │ │ ├── ResValuesXmlSerializable.java
│ │ │ │ ├── ResXmlEncodable.java
│ │ │ │ ├── ResXmlEncoders.java
│ │ │ │ └── ResXmlPatcher.java
│ │ ├── common
│ │ │ ├── BrutExceptio.java
│ │ │ ├── BrutException.java
│ │ │ ├── InvalidUnknownFileException.java
│ │ │ ├── RootUnknownFileException.java
│ │ │ └── TraversalUnknownFileException.java
│ │ ├── directory
│ │ │ ├── AbstractDirectory.java
│ │ │ ├── ChangesWrapperDirectory.java
│ │ │ ├── DirUtil.java
│ │ │ ├── Directory.java
│ │ │ ├── DirectoryException.java
│ │ │ ├── FileDirectory.java
│ │ │ ├── PathAlreadyExists.java
│ │ │ ├── PathNotExist.java
│ │ │ └── ZipRODirectory.java
│ │ └── util
│ │ │ ├── BrutIO.java
│ │ │ ├── DataInputDelegateOld.java
│ │ │ ├── Duo.java
│ │ │ ├── ExtDataInput.java
│ │ │ ├── FastXmlSerializer.java
│ │ │ ├── KXmlSerializer.java
│ │ │ ├── LanguageMapping.java
│ │ │ ├── NamespaceManager.java
│ │ │ ├── OS.java
│ │ │ └── StringUtils.java
│ ├── com
│ │ ├── common
│ │ │ └── colormixer
│ │ │ │ ├── ColorMixer.java
│ │ │ │ ├── ColorMixerDialog.java
│ │ │ │ ├── ColorPreference.java
│ │ │ │ ├── ColorValue.java
│ │ │ │ └── ColorValueAdapter.java
│ │ └── gmail
│ │ │ └── heagoo
│ │ │ ├── SelectionChangedListener.java
│ │ │ ├── apkeditor
│ │ │ ├── AboutDialog.java
│ │ │ ├── AboutPluginDialog.java
│ │ │ ├── ApkComposeActivity.java
│ │ │ ├── ApkComposeFailAdapter.java
│ │ │ ├── ApkComposeService.java
│ │ │ ├── ApkComposeThread.java
│ │ │ ├── ApkComposeThreadNew.java
│ │ │ ├── ApkDecoderMine.java
│ │ │ ├── ApkEditorApplication.java
│ │ │ ├── ApkInfoActivity.java
│ │ │ ├── ApkInfoExActivity.java
│ │ │ ├── ApkListAdapter.java
│ │ │ ├── ApkParseConsumer.java
│ │ │ ├── ApkParseThread.java
│ │ │ ├── ApkSearchActivity.java
│ │ │ ├── AppAgreementDialog.java
│ │ │ ├── AppInfo.java
│ │ │ ├── AppListAdapter.java
│ │ │ ├── AttrReplacement.java
│ │ │ ├── AxmlEditActivity.java
│ │ │ ├── CacheManager.java
│ │ │ ├── CodeEditInterface.java
│ │ │ ├── ColorXmlActivity.java
│ │ │ ├── CommonEditActivity.java
│ │ │ ├── ComposeThread.java
│ │ │ ├── DecodeModeDialog.java
│ │ │ ├── DonateActivity.java
│ │ │ ├── EditModeDialog.java
│ │ │ ├── EditorHelpActivity.java
│ │ │ ├── FileCopyDialog.java
│ │ │ ├── FileListActivity.java
│ │ │ ├── FileSelectDialog.java
│ │ │ ├── GlobalConfig.java
│ │ │ ├── GroupAdapter.java
│ │ │ ├── HelpActivity.java
│ │ │ ├── IGeneralCallback.java
│ │ │ ├── ImageDownloadActivity.java
│ │ │ ├── ImageThumbnailInfo.java
│ │ │ ├── KeyListPreference.java
│ │ │ ├── KeySelectDlgHelper.java
│ │ │ ├── LOGGER.java
│ │ │ ├── LanguageSelectDialog.java
│ │ │ ├── LinesOpDialogHelper.java
│ │ │ ├── MainActivity.java
│ │ │ ├── ManifestListAdapter.java
│ │ │ ├── ManifestLongClickDlg.java
│ │ │ ├── MatchedFilenameAdapter.java
│ │ │ ├── MatchedTextListAdapter.java
│ │ │ ├── MenuListAdapter.java
│ │ │ ├── MfSearchRetActivity.java
│ │ │ ├── OdexPatchActivity.java
│ │ │ ├── PatchDialog.java
│ │ │ ├── ProcessingDialog.java
│ │ │ ├── RebuildConfirmDialog.java
│ │ │ ├── ResListAdapter.java
│ │ │ ├── ResNavigationMgr.java
│ │ │ ├── ResSelectionChangeListener.java
│ │ │ ├── SearchFilenameDialog.java
│ │ │ ├── SearchTextDialog.java
│ │ │ ├── SettingActivity.java
│ │ │ ├── SettingEditorActivity.java
│ │ │ ├── SmaliCodeDialog.java
│ │ │ ├── SmaliMethodAdapter.java
│ │ │ ├── SmaliMethodInfo.java
│ │ │ ├── SmaliMethodWindowHelper.java
│ │ │ ├── SmaliNoticeDialog.java
│ │ │ ├── SomethingChangedListener.java
│ │ │ ├── StringListAdapter.java
│ │ │ ├── StringValueDialog.java
│ │ │ ├── TextEditBase.java
│ │ │ ├── TextEditBigActivity.java
│ │ │ ├── TextEditBigListAdapter.java
│ │ │ ├── TextEditBigListHelper.java
│ │ │ ├── TextEditNormalActivity.java
│ │ │ ├── TextEditor.java
│ │ │ ├── UserAppActivity.java
│ │ │ ├── XmlDecoder.java
│ │ │ ├── XmlLineDialog.java
│ │ │ ├── ac
│ │ │ │ ├── AutoCompleteAdapter.java
│ │ │ │ └── EditTextWithTip.java
│ │ │ ├── ce
│ │ │ │ ├── ApkParser.java
│ │ │ │ ├── DexDecode.java
│ │ │ │ ├── DexEncode.java
│ │ │ │ ├── DexPatch_BBM.java
│ │ │ │ ├── DexPatch_CheatPkgName.java
│ │ │ │ ├── DexPatch_Whatsapp.java
│ │ │ │ ├── IApkMaking.java
│ │ │ │ ├── IDescriptionUpdate.java
│ │ │ │ ├── ManifestInfo.java
│ │ │ │ ├── ManifestParser.java
│ │ │ │ ├── ReplaceLauncherIcon.java
│ │ │ │ └── e
│ │ │ │ │ ├── AxmlBodyChunk.java
│ │ │ │ │ ├── AxmlManipulateBodyChunk.java
│ │ │ │ │ ├── AxmlStringEditor.java
│ │ │ │ │ ├── IModifyTagAttribute.java
│ │ │ │ │ ├── ManifestEditorNew.java
│ │ │ │ │ ├── MyFileOutput.java
│ │ │ │ │ ├── MyInputStream.java
│ │ │ │ │ ├── PluginWrapperExtra.java
│ │ │ │ │ ├── PluginWrapperMfEditor.java
│ │ │ │ │ ├── RefactorDex.java
│ │ │ │ │ ├── RefactorLayout.java
│ │ │ │ │ ├── ResAttrIdChunk.java
│ │ │ │ │ ├── ResStringChunk.java
│ │ │ │ │ ├── ResourceEditor.java
│ │ │ │ │ ├── StringBlockEditor.java
│ │ │ │ │ └── Tag.java
│ │ │ ├── dex
│ │ │ │ ├── AccessFlags.java
│ │ │ │ ├── DexMapItem.java
│ │ │ │ ├── DexParser.java
│ │ │ │ ├── DexReader.java
│ │ │ │ ├── DexStringEditor.java
│ │ │ │ ├── DexStringItem.java
│ │ │ │ ├── Hex.java
│ │ │ │ ├── InvalidItemIndex.java
│ │ │ │ ├── MyBuffer.java
│ │ │ │ ├── MyException.java
│ │ │ │ └── Utf8Utils.java
│ │ │ ├── editor
│ │ │ │ └── HtmlViewDialog.java
│ │ │ ├── inf
│ │ │ │ └── IJavaExtractor.java
│ │ │ ├── mf
│ │ │ │ └── SimpleManifestAdapter.java
│ │ │ ├── patch
│ │ │ │ ├── IBeforeAddFile.java
│ │ │ │ ├── IPatchContext.java
│ │ │ │ ├── LinedReader.java
│ │ │ │ ├── Patch.java
│ │ │ │ ├── PatchExecutor.java
│ │ │ │ ├── PatchParser.java
│ │ │ │ ├── PatchRule.java
│ │ │ │ ├── PatchRule_AddFiles.java
│ │ │ │ ├── PatchRule_Dummy.java
│ │ │ │ ├── PatchRule_ExecDex.java
│ │ │ │ ├── PatchRule_FuncReplace.java
│ │ │ │ ├── PatchRule_Goto.java
│ │ │ │ ├── PatchRule_MatchAssign.java
│ │ │ │ ├── PatchRule_MatchGoto.java
│ │ │ │ ├── PatchRule_MatchReplace.java
│ │ │ │ ├── PatchRule_Merge.java
│ │ │ │ ├── PatchRule_RemoveFiles.java
│ │ │ │ ├── PatchRule_ReviseSig.java
│ │ │ │ ├── PathFilter.java
│ │ │ │ ├── PathFilter_Component.java
│ │ │ │ ├── PathFilter_ExactEntry.java
│ │ │ │ ├── PathFilter_Wildcard.java
│ │ │ │ ├── PathFinder.java
│ │ │ │ └── ResourceItem.java
│ │ │ ├── prj
│ │ │ │ ├── ProjectListActivity.java
│ │ │ │ ├── ProjectListActivity2.java
│ │ │ │ ├── ProjectListAdapter.java
│ │ │ │ └── ProjectRemover.java
│ │ │ ├── se
│ │ │ │ ├── ApkCreateActivity.java
│ │ │ │ ├── ApkInstaller.java
│ │ │ │ ├── AudioListAdapter.java
│ │ │ │ ├── DrawableEntry.java
│ │ │ │ ├── FileListAdapter.java
│ │ │ │ ├── IDirChanged.java
│ │ │ │ ├── ImageListAdapter.java
│ │ │ │ ├── SimpleEditActivity.java
│ │ │ │ ├── ViewHolder.java
│ │ │ │ ├── ZipFileListAdapter.java
│ │ │ │ ├── ZipHelper.java
│ │ │ │ └── ZipImageZoomer.java
│ │ │ ├── smali
│ │ │ │ ├── AsyncDecodeTask.java
│ │ │ │ ├── ISmaliAssembleCallback.java
│ │ │ │ └── ResSmaliIdProvider.java
│ │ │ ├── translate
│ │ │ │ ├── PossibleLanguages.java
│ │ │ │ └── TranslateItem.java
│ │ │ ├── ui
│ │ │ │ ├── AddFolderDialog.java
│ │ │ │ ├── EditTextRememberCursor.java
│ │ │ │ └── LayoutObListView.java
│ │ │ └── util
│ │ │ │ ├── AndroidBug5497Workaround.java
│ │ │ │ ├── AxmlStringModifier.java
│ │ │ │ ├── BigTextManager.java
│ │ │ │ ├── DebugDialog.java
│ │ │ │ ├── ErrorFixManager.java
│ │ │ │ ├── FixInvalid.java
│ │ │ │ ├── FixInvalidAttribute.java
│ │ │ │ ├── FixInvalidEquivalent.java
│ │ │ │ ├── FixInvalidFileName.java
│ │ │ │ ├── FixInvalidSymbol.java
│ │ │ │ ├── FixInvalidToken.java
│ │ │ │ ├── IconPickerPreference.java
│ │ │ │ ├── LineEditText.java
│ │ │ │ ├── OdexPatcher.java
│ │ │ │ ├── OnlineMessage.java
│ │ │ │ ├── SignHelper.java
│ │ │ │ ├── Smali2Html.java
│ │ │ │ ├── StringPattern.java
│ │ │ │ ├── TimeDumper.java
│ │ │ │ ├── ValuesXml2Html.java
│ │ │ │ └── Xml2Html.java
│ │ │ └── folderlist
│ │ │ ├── FileRecord.java
│ │ │ ├── FilenameComparator.java
│ │ │ ├── FolderListAdapter.java
│ │ │ ├── FolderListWrapper.java
│ │ │ ├── IListEventListener.java
│ │ │ ├── IListItemProducer.java
│ │ │ └── util
│ │ │ ├── OpenFiles.java
│ │ │ └── StorageUtil.java
│ └── common
│ │ └── types
│ │ ├── ActivityState_V1.java
│ │ ├── ProjectInfo_V1.java
│ │ └── StringItem.java
│ ├── jni
│ ├── Android.mk
│ ├── Application.mk
│ ├── apkeditor
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ ├── entry.c
│ │ ├── libzip
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── compat.h
│ │ │ ├── config.h
│ │ │ ├── gladman-fcrypt.c
│ │ │ ├── gladman-fcrypt.h
│ │ │ ├── gladman-fcrypt
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── aes.h
│ │ │ │ ├── aescrypt.c
│ │ │ │ ├── aeskey.c
│ │ │ │ ├── aesopt.h
│ │ │ │ ├── aestab.c
│ │ │ │ ├── fileenc.c
│ │ │ │ ├── fileenc.h
│ │ │ │ ├── hmac.c
│ │ │ │ ├── hmac.h
│ │ │ │ ├── pwd2key.c
│ │ │ │ ├── pwd2key.h
│ │ │ │ ├── sha1.c
│ │ │ │ └── sha1.h
│ │ │ ├── make_zip_err_str.sh
│ │ │ ├── make_zipconf.sh
│ │ │ ├── mkstemp.c
│ │ │ ├── zip.h
│ │ │ ├── zip_add.c
│ │ │ ├── zip_add_dir.c
│ │ │ ├── zip_add_entry.c
│ │ │ ├── zip_algorithm_bzip2.c
│ │ │ ├── zip_algorithm_deflate.c
│ │ │ ├── zip_buffer.c
│ │ │ ├── zip_close.c
│ │ │ ├── zip_delete.c
│ │ │ ├── zip_dir_add.c
│ │ │ ├── zip_dirent.c
│ │ │ ├── zip_discard.c
│ │ │ ├── zip_entry.c
│ │ │ ├── zip_err_str.c
│ │ │ ├── zip_error.c
│ │ │ ├── zip_error_clear.c
│ │ │ ├── zip_error_get.c
│ │ │ ├── zip_error_get_sys_type.c
│ │ │ ├── zip_error_strerror.c
│ │ │ ├── zip_error_to_str.c
│ │ │ ├── zip_extra_field.c
│ │ │ ├── zip_extra_field_api.c
│ │ │ ├── zip_fclose.c
│ │ │ ├── zip_fdopen.c
│ │ │ ├── zip_file_add.c
│ │ │ ├── zip_file_error_clear.c
│ │ │ ├── zip_file_error_get.c
│ │ │ ├── zip_file_get_comment.c
│ │ │ ├── zip_file_get_external_attributes.c
│ │ │ ├── zip_file_get_offset.c
│ │ │ ├── zip_file_rename.c
│ │ │ ├── zip_file_replace.c
│ │ │ ├── zip_file_set_comment.c
│ │ │ ├── zip_file_set_encryption.c
│ │ │ ├── zip_file_set_external_attributes.c
│ │ │ ├── zip_file_set_mtime.c
│ │ │ ├── zip_file_strerror.c
│ │ │ ├── zip_filerange_crc.c
│ │ │ ├── zip_fopen.c
│ │ │ ├── zip_fopen_encrypted.c
│ │ │ ├── zip_fopen_index.c
│ │ │ ├── zip_fopen_index_encrypted.c
│ │ │ ├── zip_fread.c
│ │ │ ├── zip_fseek.c
│ │ │ ├── zip_ftell.c
│ │ │ ├── zip_get_archive_comment.c
│ │ │ ├── zip_get_archive_flag.c
│ │ │ ├── zip_get_encryption_implementation.c
│ │ │ ├── zip_get_file_comment.c
│ │ │ ├── zip_get_name.c
│ │ │ ├── zip_get_num_entries.c
│ │ │ ├── zip_get_num_files.c
│ │ │ ├── zip_hash.c
│ │ │ ├── zip_io_util.c
│ │ │ ├── zip_memdup.c
│ │ │ ├── zip_name_locate.c
│ │ │ ├── zip_new.c
│ │ │ ├── zip_open.c
│ │ │ ├── zip_progress.c
│ │ │ ├── zip_random_unix.c
│ │ │ ├── zip_random_win32.c
│ │ │ ├── zip_rename.c
│ │ │ ├── zip_replace.c
│ │ │ ├── zip_set_archive_comment.c
│ │ │ ├── zip_set_archive_flag.c
│ │ │ ├── zip_set_default_password.c
│ │ │ ├── zip_set_file_comment.c
│ │ │ ├── zip_set_file_compression.c
│ │ │ ├── zip_set_name.c
│ │ │ ├── zip_source_begin_write.c
│ │ │ ├── zip_source_buffer.c
│ │ │ ├── zip_source_call.c
│ │ │ ├── zip_source_close.c
│ │ │ ├── zip_source_commit_write.c
│ │ │ ├── zip_source_compress.c
│ │ │ ├── zip_source_crc.c
│ │ │ ├── zip_source_error.c
│ │ │ ├── zip_source_file.c
│ │ │ ├── zip_source_filep.c
│ │ │ ├── zip_source_free.c
│ │ │ ├── zip_source_function.c
│ │ │ ├── zip_source_get_compression_flags.c
│ │ │ ├── zip_source_is_deleted.c
│ │ │ ├── zip_source_layered.c
│ │ │ ├── zip_source_open.c
│ │ │ ├── zip_source_pkware.c
│ │ │ ├── zip_source_read.c
│ │ │ ├── zip_source_remove.c
│ │ │ ├── zip_source_rollback_write.c
│ │ │ ├── zip_source_seek.c
│ │ │ ├── zip_source_seek_write.c
│ │ │ ├── zip_source_stat.c
│ │ │ ├── zip_source_supports.c
│ │ │ ├── zip_source_tell.c
│ │ │ ├── zip_source_tell_write.c
│ │ │ ├── zip_source_win32a.c
│ │ │ ├── zip_source_win32handle.c
│ │ │ ├── zip_source_win32utf8.c
│ │ │ ├── zip_source_win32w.c
│ │ │ ├── zip_source_window.c
│ │ │ ├── zip_source_winzip_aes_decode.c
│ │ │ ├── zip_source_winzip_aes_encode.c
│ │ │ ├── zip_source_write.c
│ │ │ ├── zip_source_zip.c
│ │ │ ├── zip_source_zip_new.c
│ │ │ ├── zip_stat.c
│ │ │ ├── zip_stat_index.c
│ │ │ ├── zip_stat_init.c
│ │ │ ├── zip_strerror.c
│ │ │ ├── zip_string.c
│ │ │ ├── zip_unchange.c
│ │ │ ├── zip_unchange_all.c
│ │ │ ├── zip_unchange_archive.c
│ │ │ ├── zip_unchange_data.c
│ │ │ ├── zip_utf-8.c
│ │ │ ├── zipconf.h
│ │ │ ├── zipint.h
│ │ │ └── zipwin32.h
│ │ └── syscheck.c
│ ├── build_and_copy.sh
│ ├── data.c
│ ├── entry.c
│ ├── fileenc.c
│ ├── filemon
│ │ ├── Android-client.mk
│ │ ├── Android-exe.mk
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ ├── build-client.sh
│ │ ├── build-exe.sh
│ │ ├── build-lib.sh
│ │ ├── client.c
│ │ ├── common.h
│ │ ├── filemon.c
│ │ ├── monitor.c
│ │ ├── notifytest.Android.mk
│ │ ├── notifytest.c
│ │ └── tags
│ ├── injector
│ │ └── jni
│ │ │ ├── Android.appdm
│ │ │ ├── Android.controller
│ │ │ ├── Android.fkme
│ │ │ ├── Android.injector
│ │ │ ├── Android.memctl
│ │ │ ├── Android.mk
│ │ │ ├── appdm.c
│ │ │ ├── common.h
│ │ │ ├── injector.c
│ │ │ ├── injector.c.bak
│ │ │ ├── libfkme.c
│ │ │ ├── libmemctl.c
│ │ │ ├── memctl.c
│ │ │ ├── memsearch.c
│ │ │ ├── memsearch.tar.gz
│ │ │ ├── shellcode.S
│ │ │ └── tracer_deletable.c
│ ├── log.txt
│ ├── merge.c
│ ├── mkstemp.c
│ ├── modzip.c
│ ├── mycopy
│ │ └── jni
│ │ │ ├── Android.mk
│ │ │ ├── Application.mk
│ │ │ └── mycopy.c
│ ├── png_utils.c
│ ├── protect.c
│ ├── protect.h
│ ├── protect_rawstr.h
│ ├── protect_str.c
│ ├── protect_str.h
│ ├── protect_transform.cpp
│ ├── run.sh
│ ├── syscheck.c
│ ├── tmp
│ │ ├── deal_with_apk_protection.cpp
│ │ └── protect
│ ├── touchreplay
│ │ ├── com_gmail_heagoo_touchreplay_TouchReplayService.h
│ │ ├── eventwriter.Android.mk
│ │ ├── eventwriter.c
│ │ ├── getevent.Android.mk
│ │ └── getevent.c
│ ├── transform
│ ├── util.c
│ ├── util.h
│ ├── zip_add.c
│ ├── zip_add_dir.c
│ ├── zip_add_entry.c
│ ├── zip_algorithm_bzip2.c
│ ├── zip_algorithm_deflate.c
│ ├── zip_buffer.c
│ ├── zip_close.c
│ ├── zip_delete.c
│ ├── zip_dir_add.c
│ ├── zip_dirent.c
│ ├── zip_discard.c
│ ├── zip_entry.c
│ ├── zip_err_str.c
│ ├── zip_error.c
│ ├── zip_error_clear.c
│ ├── zip_error_get.c
│ ├── zip_error_get_sys_type.c
│ ├── zip_error_strerror.c
│ ├── zip_error_to_str.c
│ ├── zip_extra_field.c
│ ├── zip_extra_field_api.c
│ ├── zip_fclose.c
│ ├── zip_fdopen.c
│ ├── zip_file_add.c
│ ├── zip_file_error_clear.c
│ ├── zip_file_error_get.c
│ ├── zip_file_get_comment.c
│ ├── zip_file_get_external_attributes.c
│ ├── zip_file_get_offset.c
│ ├── zip_file_rename.c
│ ├── zip_file_replace.c
│ ├── zip_file_set_comment.c
│ ├── zip_file_set_external_attributes.c
│ ├── zip_file_set_mtime.c
│ ├── zip_file_strerror.c
│ ├── zip_filerange_crc.c
│ ├── zip_fopen.c
│ ├── zip_fopen_encrypted.c
│ ├── zip_fopen_index.c
│ ├── zip_fopen_index_encrypted.c
│ ├── zip_fread.c
│ ├── zip_get_archive_comment.c
│ ├── zip_get_archive_flag.c
│ ├── zip_get_encryption_implementation.c
│ ├── zip_get_file_comment.c
│ ├── zip_get_name.c
│ ├── zip_get_num_entries.c
│ ├── zip_get_num_files.c
│ ├── zip_hash.c
│ ├── zip_io_util.c
│ ├── zip_memdup.c
│ ├── zip_name_locate.c
│ ├── zip_new.c
│ ├── zip_open.c
│ ├── zip_progress.c
│ ├── zip_random_unix.c
│ ├── zip_rename.c
│ ├── zip_replace.c
│ ├── zip_set_archive_comment.c
│ ├── zip_set_archive_flag.c
│ ├── zip_set_default_password.c
│ ├── zip_set_file_comment.c
│ ├── zip_set_file_compression.c
│ ├── zip_set_name.c
│ ├── zip_source_begin_write.c
│ ├── zip_source_buffer.c
│ ├── zip_source_call.c
│ ├── zip_source_close.c
│ ├── zip_source_commit_write.c
│ ├── zip_source_compress.c
│ ├── zip_source_crc.c
│ ├── zip_source_error.c
│ ├── zip_source_file.c
│ ├── zip_source_filep.c
│ ├── zip_source_free.c
│ ├── zip_source_function.c
│ ├── zip_source_get_compression_flags.c
│ ├── zip_source_is_deleted.c
│ ├── zip_source_layered.c
│ ├── zip_source_open.c
│ ├── zip_source_pkware.c
│ ├── zip_source_read.c
│ ├── zip_source_remove.c
│ ├── zip_source_rollback_write.c
│ ├── zip_source_seek.c
│ ├── zip_source_seek_write.c
│ ├── zip_source_stat.c
│ ├── zip_source_supports.c
│ ├── zip_source_tell.c
│ ├── zip_source_tell_write.c
│ ├── zip_source_win32a.c
│ ├── zip_source_win32handle.c
│ ├── zip_source_win32utf8.c
│ ├── zip_source_win32w.c
│ ├── zip_source_window.c
│ ├── zip_source_write.c
│ ├── zip_source_zip.c
│ ├── zip_source_zip_new.c
│ ├── zip_stat.c
│ ├── zip_stat_index.c
│ ├── zip_stat_init.c
│ ├── zip_strerror.c
│ ├── zip_string.c
│ ├── zip_unchange.c
│ ├── zip_unchange_all.c
│ ├── zip_unchange_archive.c
│ ├── zip_unchange_data.c
│ └── zip_utf-8.c
│ └── res
│ ├── color
│ ├── label_color.xml
│ ├── label_color_dark.xml
│ └── textview_color.xml
│ ├── drawable-hdpi
│ ├── cb_checked.png
│ ├── cb_unchecked.png
│ ├── down_arrow_grey.png
│ ├── down_arrow_white.png
│ ├── edit_code_snippet.png
│ ├── edit_editor.png
│ ├── edit_html.png
│ ├── edit_html_old.png
│ ├── edit_html_white.png
│ ├── edit_white.png
│ ├── extsdcard.png
│ ├── extsdcard_white.png
│ ├── handdraw_edit.png
│ ├── handdraw_save.png
│ ├── html.png
│ ├── html_blue.png
│ ├── ic_add_file.png
│ ├── ic_add_file_white.png
│ ├── ic_add_folder.png
│ ├── ic_add_folder_white.png
│ ├── ic_case_insensitive.png
│ ├── ic_case_insensitive_white.png
│ ├── ic_case_sensitive.png
│ ├── ic_case_sensitive_white.png
│ ├── ic_clipboard.png
│ ├── ic_clipboard_white.png
│ ├── ic_colorpad.png
│ ├── ic_delete.png
│ ├── ic_delete_white.png
│ ├── ic_details.png
│ ├── ic_details_white.png
│ ├── ic_donate.png
│ ├── ic_done.png
│ ├── ic_done_white.png
│ ├── ic_drawer.png
│ ├── ic_home.png
│ ├── ic_home_white.png
│ ├── ic_patch.png
│ ├── ic_rename.png
│ ├── ic_replace.png
│ ├── ic_replace_blue.png
│ ├── ic_replace_white.png
│ ├── ic_rotate.png
│ ├── ic_save.png
│ ├── ic_save_new.png
│ ├── ic_save_white.png
│ ├── ic_save_white_new.png
│ ├── ic_search.png
│ ├── ic_search_big.png
│ ├── ic_search_big_white.png
│ ├── ic_search_white.png
│ ├── ic_select.png
│ ├── ic_select_white.png
│ ├── ic_toolbar_more.png
│ ├── ic_www.png
│ ├── listfile.png
│ ├── listfile_blue.png
│ ├── more.png
│ ├── more_white.png
│ ├── namecard.png
│ ├── navi_right.png
│ ├── pager_bg.png
│ ├── pager_focus.png
│ ├── parse_error.png
│ ├── parser_logo.png
│ ├── pause.png
│ ├── pencil.png
│ ├── pencil_blue.png
│ ├── pencil_white.png
│ ├── play.png
│ ├── save_white.png
│ ├── sdcard.png
│ ├── sdcard_white.png
│ ├── searchtxt_checked.png
│ ├── searchtxt_checked_white.png
│ ├── searchtxt_unchecked.png
│ ├── searchtxt_unchecked_white.png
│ ├── smali_blue.png
│ ├── smali_grey.png
│ ├── t1046_dex2smali_blue2.png
│ ├── t1046_dex2smali_grey2.png
│ ├── t1046_down_arrow_grey2.png
│ ├── t1046_down_arrow_white2.png
│ ├── textfile.png
│ ├── translate.png
│ └── translate_grey.png
│ ├── drawable-nodpi
│ ├── arrow_down.png
│ └── arrow_right.png
│ ├── drawable-xhdpi
│ └── ic_java.png
│ ├── drawable-xxhdpi
│ ├── array_switch.png
│ ├── ic_about.png
│ ├── ic_about_white.png
│ ├── ic_project.png
│ ├── ic_project_white.png
│ ├── ic_setting.png
│ ├── ic_setting_white.png
│ ├── image_download.png
│ ├── image_download_white.png
│ ├── rotate.png
│ └── rotate_pressed.png
│ ├── drawable
│ ├── about_button_bg.xml
│ ├── apk_icon.png
│ ├── apkeditor.png
│ ├── appdm_next.png
│ ├── appdm_previous.png
│ ├── applistutil_btn_custom.xml
│ ├── applistutil_button.9.png
│ ├── applistutil_button_hilight.9.png
│ ├── bg_button_style.xml
│ ├── bg_edittext.xml
│ ├── bg_edittext_dark.xml
│ ├── bg_edittext_focused.xml
│ ├── bg_edittext_focused_dark.xml
│ ├── bg_edittext_normal.xml
│ ├── bg_edittext_normal_dark.xml
│ ├── bg_edittext_pressed.xml
│ ├── bg_icon_addlanguage.xml
│ ├── bg_icon_dex2smali.xml
│ ├── bg_icon_down_arrow.xml
│ ├── bg_icon_edit.xml
│ ├── bg_icon_edit_dark.xml
│ ├── bg_icon_rotate.xml
│ ├── bg_icon_translate.xml
│ ├── bg_round_corner.xml
│ ├── bg_special_circle.xml
│ ├── big_cursor.xml
│ ├── blue.png
│ ├── check_green.png
│ ├── color_list_item.xml
│ ├── coloritem_30.xml
│ ├── coloritem_cc.xml
│ ├── coloritem_dark.xml
│ ├── coloritem_ff.xml
│ ├── coloritem_littleblue.xml
│ ├── coloritem_orange.xml
│ ├── colorview_bg.png
│ ├── commonutil_progressbar.xml
│ ├── editor_log.png
│ ├── et_background_white.xml
│ ├── failed.png
│ ├── folderutil_file.png
│ ├── folderutil_folder.png
│ ├── folderutil_listitem_bg.xml
│ ├── folderutil_listitem_bg_dark.xml
│ ├── folderutil_up.png
│ ├── ic_menu_white.xml
│ ├── icon_folder.png
│ ├── icon_folder_grey.png
│ ├── icon_manifest.png
│ ├── icon_manifest_grey.png
│ ├── icon_text.png
│ ├── icon_text_grey.png
│ ├── list_selector.xml
│ ├── list_selector_dark.xml
│ ├── listitem_bg_normal.xml
│ ├── listitem_bg_normal_dark.xml
│ ├── listitem_bg_pressed.xml
│ ├── listitem_bg_pressed_dark.xml
│ ├── plus.png
│ ├── plus_grey.png
│ ├── selector_checkbox.xml
│ ├── selector_menu_dark.xml
│ ├── selector_menu_dark2.xml
│ ├── selector_menu_light.xml
│ ├── selector_menu_light2.xml
│ ├── selector_slim_spinner.xml
│ ├── selector_togglebutton.xml
│ ├── shape_roundcorner.xml
│ ├── slim_spinner_normal.9.png
│ ├── slim_spinner_pressed.9.png
│ ├── succeed.png
│ ├── t1046_bg_file_dark.xml
│ ├── t1046_bg_icon_dex2smali2.xml
│ ├── t1046_bg_icon_down_arrow2.xml
│ ├── t1046_bg_mf_dark.xml
│ ├── t1046_bg_z_dark.xml
│ ├── t1046_button.xml
│ ├── t1046_button_large.xml
│ ├── t1046_color_win.png
│ ├── t1046_edittext.xml
│ ├── t1046_selector.xml
│ ├── textview_bg.xml
│ ├── textview_bg_dark.xml
│ ├── togglebutton_off.9.png
│ ├── togglebutton_on.9.png
│ ├── util_xml_file.png
│ └── white.png
│ ├── layout-land
│ ├── activity_apkinfo.xml
│ └── activity_main.xml
│ ├── layout
│ ├── aaa.xml
│ ├── activity_apkcompose.xml
│ ├── activity_apkinfo.xml
│ ├── activity_apkinfo_copy.xml
│ ├── activity_apksearch.xml
│ ├── activity_applist.xml
│ ├── activity_axmledit.xml
│ ├── activity_colors_xml.xml
│ ├── activity_commonedit.xml
│ ├── activity_donate.xml
│ ├── activity_editor.xml
│ ├── activity_editor_bigfile.xml
│ ├── activity_editor_wrap.xml
│ ├── activity_help.xml
│ ├── activity_listfile.xml
│ ├── activity_main.xml
│ ├── activity_mf_searchret.xml
│ ├── activity_odex_patch.xml
│ ├── activity_projectlist.xml
│ ├── activity_simpleedit.xml
│ ├── activity_simpleedit_making.xml
│ ├── activity_xml.xml
│ ├── dialog_debug.xml
│ ├── dialog_txt_searchresult.xml
│ ├── dlg_about.xml
│ ├── dlg_about_translate_plugin.xml
│ ├── dlg_add_folder.xml
│ ├── dlg_addkeyvalue.xml
│ ├── dlg_app_license.xml
│ ├── dlg_colormixer.xml
│ ├── dlg_decodemode.xml
│ ├── dlg_editmode.xml
│ ├── dlg_extractres.xml
│ ├── dlg_filename_searchret.xml
│ ├── dlg_fileselect.xml
│ ├── dlg_htmlview.xml
│ ├── dlg_keyselect.xml
│ ├── dlg_lines_op.xml
│ ├── dlg_manifestline.xml
│ ├── dlg_patch.xml
│ ├── dlg_processing.xml
│ ├── dlg_rebuild_confirm.xml
│ ├── dlg_resfile_more.xml
│ ├── dlg_selectlanguage.xml
│ ├── dlg_smali_license.xml
│ ├── dlg_smalicode.xml
│ ├── dlg_stringvalue.xml
│ ├── dlg_tip.xml
│ ├── dlg_xmlline.xml
│ ├── folderutil_file_item.xml
│ ├── included_editor_menu.xml
│ ├── included_editor_view.xml
│ ├── included_editor_view_wrap.xml
│ ├── included_find_panel.xml
│ ├── item_applist.xml
│ ├── item_autocomplete.xml
│ ├── item_color_value.xml
│ ├── item_editor_view.xml
│ ├── item_editor_view_wrap.xml
│ ├── item_failed_message.xml
│ ├── item_file.xml
│ ├── item_file_selectable.xml
│ ├── item_find_panel.xml
│ ├── item_find_view.xml
│ ├── item_iconlistpref.xml
│ ├── item_iconpicker.xml
│ ├── item_lined_text.xml
│ ├── item_main_menu.xml
│ ├── item_manifestline.xml
│ ├── item_matchedfile.xml
│ ├── item_matchedline.xml
│ ├── item_more_option.xml
│ ├── item_navigation_dir.xml
│ ├── item_res_menu.xml
│ ├── item_stringvalue.xml
│ ├── item_stringvaluestatic.xml
│ ├── item_zipfile.xml
│ ├── pageitem_audios.xml
│ ├── pageitem_files.xml
│ ├── pageitem_images.xml
│ ├── popup_item_big.xml
│ ├── popup_item_small.xml
│ └── popup_list.xml
│ ├── menu
│ ├── action_bar.xml
│ └── main.xml
│ ├── raw-de
│ ├── about_patch.htm
│ ├── about_translate_plugin.htm
│ ├── app_select.jpg
│ ├── common_edit.jpg
│ ├── editor_help.htm
│ ├── editor_snapshot1.jpg
│ ├── editor_snapshot2.jpg
│ ├── example3_step2.jpg
│ ├── example5_step3.jpg
│ ├── help.htm
│ ├── layout_edit.jpg
│ └── movable_edit.jpg
│ ├── raw-es
│ ├── about_patch.htm
│ ├── about_translate_plugin.htm
│ ├── app_select.jpg
│ ├── button_after.jpg
│ ├── button_before.jpg
│ ├── common_edit.jpg
│ ├── editor_help.htm
│ ├── editor_snapshot1.jpg
│ ├── editor_snapshot2.jpg
│ ├── example1_step1.jpg
│ ├── example1_step2.jpg
│ ├── example1_step3.jpg
│ ├── example3_step2.jpg
│ ├── example4_step3.jpg
│ ├── example5_step3.jpg
│ ├── help.htm
│ ├── layout_edit.jpg
│ ├── movable_edit.jpg
│ └── oldhelp.htm
│ ├── raw-hu
│ ├── about_patch.htm
│ ├── about_translate_plugin.htm
│ ├── editor_help.htm
│ ├── help.htm
│ └── oldhelp.htm
│ ├── raw-iw
│ └── help.htm
│ ├── raw-ru
│ ├── about_patch.htm
│ ├── about_translate_plugin.htm
│ ├── editor_help.htm
│ ├── help.htm
│ └── oldhelp.htm
│ ├── raw
│ ├── about_patch.htm
│ ├── about_translate_plugin.htm
│ ├── app_select.jpg
│ ├── button_after.jpg
│ ├── button_before.jpg
│ ├── common_edit.jpg
│ ├── editor_help.htm
│ ├── editor_snapshot1.jpg
│ ├── editor_snapshot2.jpg
│ ├── example1_1.jpg
│ ├── example1_2.jpg
│ ├── example1_3.jpg
│ ├── example1_4.jpg
│ ├── example1_5.jpg
│ ├── example2_1.jpg
│ ├── example2_2.jpg
│ ├── example2_3.jpg
│ ├── example2_4.jpg
│ ├── example2_5.jpg
│ ├── example3_1.jpg
│ ├── example3_2.jpg
│ ├── example4_1.jpg
│ ├── example5_1.jpg
│ ├── help.htm
│ ├── layout_edit.jpg
│ ├── logo.jpg
│ └── movable_edit.jpg
│ ├── values-ar
│ └── strings.xml
│ ├── values-be
│ ├── arrays.xml
│ └── strings.xml
│ ├── values-cs
│ ├── arrays.xml
│ └── strings.xml
│ ├── values-de
│ ├── arrays.xml
│ └── strings.xml
│ ├── values-es
│ ├── arrays.xml
│ └── strings.xml
│ ├── values-fa
│ └── strings.xml
│ ├── values-fr
│ ├── arrays.xml
│ └── strings.xml
│ ├── values-hu
│ ├── arrays.xml
│ └── strings.xml
│ ├── values-it
│ ├── arrays.xml
│ └── strings.xml
│ ├── values-iw
│ ├── arrays.xml
│ └── strings.xml
│ ├── values-nl
│ └── strings.xml
│ ├── values-pl
│ ├── arrays.xml
│ └── strings.xml
│ ├── values-pt-rBR
│ └── strings.xml
│ ├── values-pt
│ └── strings.xml
│ ├── values-ru
│ ├── arrays.xml
│ └── strings.xml
│ ├── values-sk
│ ├── arrays.xml
│ └── strings.xml
│ ├── values-tr
│ ├── arrays.xml
│ └── strings.xml
│ ├── values-uk
│ ├── arrays.xml
│ └── strings.xml
│ ├── values-vi
│ ├── arrays.xml
│ └── strings.xml
│ ├── values-zh
│ └── strings.xml
│ ├── values
│ ├── arrays.xml
│ ├── colormixer_attrs.xml
│ ├── dimens.xml
│ ├── filetypes.xml
│ ├── strings.xml
│ └── styles.xml
│ └── xml
│ ├── editor_setting.xml
│ ├── filepaths.xml
│ └── settings.xml
├── apkEditorPro
├── build.gradle
├── libs
│ ├── android-5.1-clst-core.jar
│ ├── baksmali-2.2.0.jar
│ ├── baksmali-2.2.3.jar
│ ├── baksmali-2.2.5.jar
│ ├── baksmali-2.4.0.jar
│ ├── dx-1.10.jar
│ ├── smali-2.2.0.jar
│ ├── smali-2.2.3.jar
│ ├── smali-2.2.5.jar
│ ├── smali-2.4.0.jar
│ ├── smaliParser$DFA30.class
│ ├── smaliParser$DFA38.class
│ ├── smaliParser$DFA40.class
│ ├── smaliParser$access_list_return.class
│ ├── smaliParser$annotation_element_return.class
│ ├── smaliParser$annotation_return.class
│ ├── smaliParser$array_descriptor_return.class
│ ├── smaliParser$array_literal_return.class
│ ├── smaliParser$catch_directive_return.class
│ ├── smaliParser$catchall_directive_return.class
│ ├── smaliParser$class_spec_return.class
│ ├── smaliParser$debug_directive_return.class
│ ├── smaliParser$double_literal_return.class
│ ├── smaliParser$end_local_directive_return.class
│ ├── smaliParser$enum_literal_return.class
│ ├── smaliParser$epilogue_directive_return.class
│ ├── smaliParser$field_reference_return.class
│ ├── smaliParser$field_return.class
│ ├── smaliParser$fixed_32bit_literal_return.class
│ ├── smaliParser$fixed_literal_return.class
│ ├── smaliParser$float_literal_return.class
│ ├── smaliParser$implements_spec_return.class
│ ├── smaliParser$insn_array_data_directive_return.class
│ ├── smaliParser$insn_format10t_return.class
│ ├── smaliParser$insn_format10x_odex_return.class
│ ├── smaliParser$insn_format10x_return.class
│ ├── smaliParser$insn_format11n_return.class
│ ├── smaliParser$insn_format11x_return.class
│ ├── smaliParser$insn_format12x_return.class
│ ├── smaliParser$insn_format20bc_return.class
│ ├── smaliParser$insn_format20t_return.class
│ ├── smaliParser$insn_format21c_field_odex_return.class
│ ├── smaliParser$insn_format21c_field_return.class
│ ├── smaliParser$insn_format21c_string_return.class
│ ├── smaliParser$insn_format21c_type_return.class
│ ├── smaliParser$insn_format21ih_return.class
│ ├── smaliParser$insn_format21lh_return.class
│ ├── smaliParser$insn_format21s_return.class
│ ├── smaliParser$insn_format21t_return.class
│ ├── smaliParser$insn_format22b_return.class
│ ├── smaliParser$insn_format22c_field_odex_return.class
│ ├── smaliParser$insn_format22c_field_return.class
│ ├── smaliParser$insn_format22c_type_return.class
│ ├── smaliParser$insn_format22cs_field_return.class
│ ├── smaliParser$insn_format22s_return.class
│ ├── smaliParser$insn_format22t_return.class
│ ├── smaliParser$insn_format22x_return.class
│ ├── smaliParser$insn_format23x_return.class
│ ├── smaliParser$insn_format30t_return.class
│ ├── smaliParser$insn_format31c_return.class
│ ├── smaliParser$insn_format31i_return.class
│ ├── smaliParser$insn_format31t_return.class
│ ├── smaliParser$insn_format32x_return.class
│ ├── smaliParser$insn_format35c_method_odex_return.class
│ ├── smaliParser$insn_format35c_method_return.class
│ ├── smaliParser$insn_format35c_type_return.class
│ ├── smaliParser$insn_format35mi_method_return.class
│ ├── smaliParser$insn_format35ms_method_return.class
│ ├── smaliParser$insn_format3rc_method_odex_return.class
│ ├── smaliParser$insn_format3rc_method_return.class
│ ├── smaliParser$insn_format3rc_type_return.class
│ ├── smaliParser$insn_format3rmi_method_return.class
│ ├── smaliParser$insn_format3rms_method_return.class
│ ├── smaliParser$insn_format45cc_method_return.class
│ ├── smaliParser$insn_format4rcc_method_return.class
│ ├── smaliParser$insn_format51l_return.class
│ ├── smaliParser$insn_packed_switch_directive_return.class
│ ├── smaliParser$insn_sparse_switch_directive_return.class
│ ├── smaliParser$instruction_format12x_return.class
│ ├── smaliParser$instruction_format22s_return.class
│ ├── smaliParser$instruction_format31i_return.class
│ ├── smaliParser$instruction_return.class
│ ├── smaliParser$integer_literal_return.class
│ ├── smaliParser$integral_literal_return.class
│ ├── smaliParser$label_ref_return.class
│ ├── smaliParser$label_return.class
│ ├── smaliParser$line_directive_return.class
│ ├── smaliParser$literal_return.class
│ ├── smaliParser$local_directive_return.class
│ ├── smaliParser$member_name_return.class
│ ├── smaliParser$method_prototype_return.class
│ ├── smaliParser$method_reference_return.class
│ ├── smaliParser$method_return.class
│ ├── smaliParser$nonvoid_type_descriptor_return.class
│ ├── smaliParser$ordered_method_item_return.class
│ ├── smaliParser$param_list_or_id_primitive_type_return.class
│ ├── smaliParser$param_list_or_id_return.class
│ ├── smaliParser$param_list_return.class
│ ├── smaliParser$parameter_directive_return.class
│ ├── smaliParser$parsed_integer_literal_return.class
│ ├── smaliParser$prologue_directive_return.class
│ ├── smaliParser$reference_type_descriptor_return.class
│ ├── smaliParser$register_list_return.class
│ ├── smaliParser$register_range_return.class
│ ├── smaliParser$registers_directive_return.class
│ ├── smaliParser$restart_local_directive_return.class
│ ├── smaliParser$simple_name_return.class
│ ├── smaliParser$smali_file_return.class
│ ├── smaliParser$smali_file_scope.class
│ ├── smaliParser$source_directive_return.class
│ ├── smaliParser$source_spec_return.class
│ ├── smaliParser$statements_and_directives_return.class
│ ├── smaliParser$statements_and_directives_scope.class
│ ├── smaliParser$subannotation_return.class
│ ├── smaliParser$super_spec_return.class
│ ├── smaliParser$type_descriptor_return.class
│ ├── smaliParser$type_field_method_literal_return.class
│ ├── smaliParser$verification_error_reference_return.class
│ └── smaliParser.class
├── proguard-project.txt
└── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── assets
│ ├── LICENSE.txt
│ ├── aapt
│ ├── aapt-x86-pie
│ ├── aapt6-arm32
│ ├── aapt7.1
│ ├── android.zip
│ ├── arm64-v8a
│ │ ├── aapt
│ │ └── aapt2
│ ├── armeabi-v7a
│ │ ├── aapt
│ │ └── aapt2
│ ├── dummy.9.png
│ ├── dummy_jpg.jpg
│ ├── dummy_png.png
│ ├── editorkey.pk8
│ ├── editorkey.x509.pem
│ ├── http.zip
│ ├── mycp
│ ├── patch_app_rename.zip
│ ├── patch_bypass_sigcheck.old.zip
│ ├── patch_bypass_sigcheck.zip
│ ├── patch_data_editor.zip
│ ├── patch_example
│ ├── patch_launcher_toast.zip
│ ├── patch_mem_editor.zip
│ ├── patch_my_font.zip
│ ├── patch_new_entrance.zip
│ ├── patch_script_example.zip
│ ├── smali-NOTICE
│ ├── smali_patch
│ │ ├── Utils.smali
│ │ ├── cheat_package_name
│ │ ├── whatsapp_App
│ │ └── whatsapp_checkString
│ ├── syntax
│ │ ├── css.xml
│ │ ├── html.xml
│ │ ├── java.xml
│ │ ├── js.xml
│ │ ├── json.xml
│ │ ├── smali.xml
│ │ ├── txt.xml
│ │ └── xml.xml
│ ├── testkey.pk8
│ ├── testkey.x509.pem
│ ├── viewsource.css
│ ├── x86
│ │ ├── aapt
│ │ └── aapt2
│ └── x86_64
│ │ ├── aapt
│ │ └── aapt2
│ ├── java
│ ├── com
│ │ └── gmail
│ │ │ └── heagoo
│ │ │ ├── apkeditor
│ │ │ └── pro
│ │ │ │ ├── Baksmali_r.java
│ │ │ │ ├── DexDecoder.java
│ │ │ │ ├── DexEncoder.java
│ │ │ │ ├── JavaExtractor.java
│ │ │ │ ├── ResourceDecoder.java
│ │ │ │ └── appdm.java
│ │ │ └── seticon
│ │ │ └── SetIcon.java
│ └── jadx
│ │ ├── api
│ │ ├── CodePosition.java
│ │ ├── IJadxArgs.java
│ │ ├── JadxArgs.java
│ │ ├── JadxDecompiler.java
│ │ ├── JavaClass.java
│ │ ├── JavaField.java
│ │ ├── JavaMethod.java
│ │ ├── JavaNode.java
│ │ ├── JavaPackage.java
│ │ ├── ResourceFile.java
│ │ ├── ResourceFileContent.java
│ │ ├── ResourceType.java
│ │ └── ResourcesLoader.java
│ │ └── core
│ │ ├── Consts.java
│ │ ├── Jadx.java
│ │ ├── ProcessClass.java
│ │ ├── clsp
│ │ ├── ClsSet.java
│ │ ├── ClspGraph.java
│ │ ├── ConvertToClsSet.java
│ │ └── NClass.java
│ │ ├── codegen
│ │ ├── AnnotationGen.java
│ │ ├── ClassGen.java
│ │ ├── CodeGen.java
│ │ ├── CodeWriter.java
│ │ ├── ConditionGen.java
│ │ ├── InsnGen.java
│ │ ├── MethodGen.java
│ │ ├── NameGen.java
│ │ ├── RegionGen.java
│ │ └── TypeGen.java
│ │ ├── deobf
│ │ ├── DeobfClsInfo.java
│ │ ├── DeobfPresets.java
│ │ ├── Deobfuscator.java
│ │ ├── NameMapper.java
│ │ ├── OverridedMethodsNode.java
│ │ └── PackageNode.java
│ │ ├── dex
│ │ ├── attributes
│ │ │ ├── AFlag.java
│ │ │ ├── AType.java
│ │ │ ├── AttrList.java
│ │ │ ├── AttrNode.java
│ │ │ ├── AttributeStorage.java
│ │ │ ├── EmptyAttrStorage.java
│ │ │ ├── IAttribute.java
│ │ │ ├── IAttributeNode.java
│ │ │ ├── annotations
│ │ │ │ ├── Annotation.java
│ │ │ │ ├── AnnotationsList.java
│ │ │ │ └── MethodParameters.java
│ │ │ └── nodes
│ │ │ │ ├── DeclareVariablesAttr.java
│ │ │ │ ├── EdgeInsnAttr.java
│ │ │ │ ├── EnumClassAttr.java
│ │ │ │ ├── EnumMapAttr.java
│ │ │ │ ├── FieldReplaceAttr.java
│ │ │ │ ├── ForceReturnAttr.java
│ │ │ │ ├── IgnoreEdgeAttr.java
│ │ │ │ ├── JadxErrorAttr.java
│ │ │ │ ├── JumpInfo.java
│ │ │ │ ├── LineAttrNode.java
│ │ │ │ ├── LoopInfo.java
│ │ │ │ ├── LoopLabelAttr.java
│ │ │ │ ├── MethodInlineAttr.java
│ │ │ │ ├── PhiListAttr.java
│ │ │ │ └── SourceFileAttr.java
│ │ ├── info
│ │ │ ├── AccessInfo.java
│ │ │ ├── ClassInfo.java
│ │ │ ├── FieldInfo.java
│ │ │ ├── InfoStorage.java
│ │ │ └── MethodInfo.java
│ │ ├── instructions
│ │ │ ├── ArithNode.java
│ │ │ ├── ArithOp.java
│ │ │ ├── ConstClassNode.java
│ │ │ ├── ConstStringNode.java
│ │ │ ├── FillArrayNode.java
│ │ │ ├── FilledNewArrayNode.java
│ │ │ ├── GotoNode.java
│ │ │ ├── IfNode.java
│ │ │ ├── IfOp.java
│ │ │ ├── IndexInsnNode.java
│ │ │ ├── InsnDecoder.java
│ │ │ ├── InsnType.java
│ │ │ ├── InvokeNode.java
│ │ │ ├── InvokeType.java
│ │ │ ├── NewArrayNode.java
│ │ │ ├── PhiInsn.java
│ │ │ ├── SwitchNode.java
│ │ │ ├── args
│ │ │ │ ├── ArgType.java
│ │ │ │ ├── FieldArg.java
│ │ │ │ ├── InsnArg.java
│ │ │ │ ├── InsnWrapArg.java
│ │ │ │ ├── LiteralArg.java
│ │ │ │ ├── Named.java
│ │ │ │ ├── NamedArg.java
│ │ │ │ ├── PrimitiveType.java
│ │ │ │ ├── RegisterArg.java
│ │ │ │ ├── SSAVar.java
│ │ │ │ ├── TypeImmutableArg.java
│ │ │ │ ├── Typed.java
│ │ │ │ └── VarName.java
│ │ │ └── mods
│ │ │ │ ├── ConstructorInsn.java
│ │ │ │ └── TernaryInsn.java
│ │ ├── nodes
│ │ │ ├── BlockNode.java
│ │ │ ├── ClassNode.java
│ │ │ ├── DexNode.java
│ │ │ ├── Edge.java
│ │ │ ├── FieldNode.java
│ │ │ ├── IBlock.java
│ │ │ ├── IBranchRegion.java
│ │ │ ├── IContainer.java
│ │ │ ├── ILoadable.java
│ │ │ ├── IRegion.java
│ │ │ ├── InsnContainer.java
│ │ │ ├── InsnNode.java
│ │ │ ├── MethodNode.java
│ │ │ ├── ProcessState.java
│ │ │ ├── ResRefField.java
│ │ │ ├── RootNode.java
│ │ │ └── parser
│ │ │ │ ├── AnnotationsParser.java
│ │ │ │ ├── DebugInfoParser.java
│ │ │ │ ├── EncValueParser.java
│ │ │ │ ├── FieldInitAttr.java
│ │ │ │ ├── LocalVar.java
│ │ │ │ ├── SignatureParser.java
│ │ │ │ └── StaticValuesParser.java
│ │ ├── regions
│ │ │ ├── AbstractRegion.java
│ │ │ ├── Region.java
│ │ │ ├── SwitchRegion.java
│ │ │ ├── SynchronizedRegion.java
│ │ │ ├── TryCatchRegion.java
│ │ │ ├── conditions
│ │ │ │ ├── Compare.java
│ │ │ │ ├── IfCondition.java
│ │ │ │ ├── IfInfo.java
│ │ │ │ └── IfRegion.java
│ │ │ └── loops
│ │ │ │ ├── ForEachLoop.java
│ │ │ │ ├── ForLoop.java
│ │ │ │ ├── LoopRegion.java
│ │ │ │ └── LoopType.java
│ │ ├── trycatch
│ │ │ ├── CatchAttr.java
│ │ │ ├── ExcHandlerAttr.java
│ │ │ ├── ExceptionHandler.java
│ │ │ ├── SplitterBlockAttr.java
│ │ │ └── TryCatchBlock.java
│ │ └── visitors
│ │ │ ├── AbstractVisitor.java
│ │ │ ├── ClassModifier.java
│ │ │ ├── CodeShrinker.java
│ │ │ ├── ConstInlineVisitor.java
│ │ │ ├── DebugInfoVisitor.java
│ │ │ ├── DependencyCollector.java
│ │ │ ├── DepthTraversal.java
│ │ │ ├── DotGraphVisitor.java
│ │ │ ├── EnumVisitor.java
│ │ │ ├── ExtractFieldInit.java
│ │ │ ├── FallbackModeVisitor.java
│ │ │ ├── IDexTreeVisitor.java
│ │ │ ├── JadxVisitor.java
│ │ │ ├── MethodInlineVisitor.java
│ │ │ ├── ModVisitor.java
│ │ │ ├── PrepareForCodeGen.java
│ │ │ ├── ReSugarCode.java
│ │ │ ├── RenameVisitor.java
│ │ │ ├── SaveCode.java
│ │ │ ├── SimplifyVisitor.java
│ │ │ ├── blocksmaker
│ │ │ ├── BlockExceptionHandler.java
│ │ │ ├── BlockFinallyExtract.java
│ │ │ ├── BlockFinish.java
│ │ │ ├── BlockProcessor.java
│ │ │ ├── BlockSplitter.java
│ │ │ └── helpers
│ │ │ │ ├── BlocksPair.java
│ │ │ │ └── BlocksRemoveInfo.java
│ │ │ ├── regions
│ │ │ ├── AbstractRegionVisitor.java
│ │ │ ├── CheckRegions.java
│ │ │ ├── CleanRegions.java
│ │ │ ├── DepthRegionTraversal.java
│ │ │ ├── IRegionIterativeVisitor.java
│ │ │ ├── IRegionVisitor.java
│ │ │ ├── IfMakerHelper.java
│ │ │ ├── IfRegionVisitor.java
│ │ │ ├── LoopRegionVisitor.java
│ │ │ ├── ProcessTryCatchRegions.java
│ │ │ ├── ProcessVariables.java
│ │ │ ├── RegionMaker.java
│ │ │ ├── RegionMakerVisitor.java
│ │ │ ├── RegionStack.java
│ │ │ ├── ReturnVisitor.java
│ │ │ ├── TernaryMod.java
│ │ │ └── TracedRegionVisitor.java
│ │ │ ├── ssa
│ │ │ ├── EliminatePhiNodes.java
│ │ │ ├── LiveVarAnalysis.java
│ │ │ └── SSATransform.java
│ │ │ └── typeinference
│ │ │ ├── CheckTypeVisitor.java
│ │ │ ├── FinishTypeInference.java
│ │ │ ├── PostTypeInference.java
│ │ │ ├── SelectTypeVisitor.java
│ │ │ └── TypeInference.java
│ │ ├── utils
│ │ ├── AsmUtils.java
│ │ ├── BlockUtils.java
│ │ ├── DebugUtils.java
│ │ ├── EmptyBitSet.java
│ │ ├── ErrorsCounter.java
│ │ ├── InsnList.java
│ │ ├── InsnUtils.java
│ │ ├── InstructionRemover.java
│ │ ├── RegionUtils.java
│ │ ├── StringUtils.java
│ │ ├── Utils.java
│ │ ├── exceptions
│ │ │ ├── CodegenException.java
│ │ │ ├── DecodeException.java
│ │ │ ├── JadxException.java
│ │ │ ├── JadxOverflowException.java
│ │ │ └── JadxRuntimeException.java
│ │ └── files
│ │ │ ├── FileUtils.java
│ │ │ ├── InputFile.java
│ │ │ └── JavaToDex.java
│ │ └── xmlgen
│ │ ├── BinaryXMLParser.java
│ │ ├── CommonBinaryParser.java
│ │ ├── ManifestAttributes.java
│ │ ├── ParserConstants.java
│ │ ├── ParserStream.java
│ │ ├── ResContainer.java
│ │ ├── ResTableParser.java
│ │ ├── ResXmlGen.java
│ │ ├── ResourceStorage.java
│ │ ├── ResourcesSaver.java
│ │ └── entry
│ │ ├── EntryConfig.java
│ │ ├── RawNamedValue.java
│ │ ├── RawValue.java
│ │ ├── ResourceEntry.java
│ │ └── ValuesParser.java
│ ├── jni
│ ├── Android.mk
│ ├── Application.mk
│ ├── data.c
│ ├── entry.c
│ ├── libzip
│ │ ├── CMakeLists.txt
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── compat.h
│ │ ├── config.h
│ │ ├── gladman-fcrypt.c
│ │ ├── gladman-fcrypt.h
│ │ ├── gladman-fcrypt
│ │ │ ├── Makefile.am
│ │ │ ├── Makefile.in
│ │ │ ├── aes.h
│ │ │ ├── aescrypt.c
│ │ │ ├── aeskey.c
│ │ │ ├── aesopt.h
│ │ │ ├── aestab.c
│ │ │ ├── fileenc.c
│ │ │ ├── fileenc.h
│ │ │ ├── hmac.c
│ │ │ ├── hmac.h
│ │ │ ├── pwd2key.c
│ │ │ ├── pwd2key.h
│ │ │ ├── sha1.c
│ │ │ └── sha1.h
│ │ ├── make_zip_err_str.sh
│ │ ├── make_zipconf.sh
│ │ ├── mkstemp.c
│ │ ├── zip.h
│ │ ├── zip_add.c
│ │ ├── zip_add_dir.c
│ │ ├── zip_add_entry.c
│ │ ├── zip_algorithm_bzip2.c
│ │ ├── zip_algorithm_deflate.c
│ │ ├── zip_buffer.c
│ │ ├── zip_close.c
│ │ ├── zip_delete.c
│ │ ├── zip_dir_add.c
│ │ ├── zip_dirent.c
│ │ ├── zip_discard.c
│ │ ├── zip_entry.c
│ │ ├── zip_err_str.c
│ │ ├── zip_error.c
│ │ ├── zip_error_clear.c
│ │ ├── zip_error_get.c
│ │ ├── zip_error_get_sys_type.c
│ │ ├── zip_error_strerror.c
│ │ ├── zip_error_to_str.c
│ │ ├── zip_extra_field.c
│ │ ├── zip_extra_field_api.c
│ │ ├── zip_fclose.c
│ │ ├── zip_fdopen.c
│ │ ├── zip_file_add.c
│ │ ├── zip_file_error_clear.c
│ │ ├── zip_file_error_get.c
│ │ ├── zip_file_get_comment.c
│ │ ├── zip_file_get_external_attributes.c
│ │ ├── zip_file_get_offset.c
│ │ ├── zip_file_rename.c
│ │ ├── zip_file_replace.c
│ │ ├── zip_file_set_comment.c
│ │ ├── zip_file_set_encryption.c
│ │ ├── zip_file_set_external_attributes.c
│ │ ├── zip_file_set_mtime.c
│ │ ├── zip_file_strerror.c
│ │ ├── zip_filerange_crc.c
│ │ ├── zip_fopen.c
│ │ ├── zip_fopen_encrypted.c
│ │ ├── zip_fopen_index.c
│ │ ├── zip_fopen_index_encrypted.c
│ │ ├── zip_fread.c
│ │ ├── zip_fseek.c
│ │ ├── zip_ftell.c
│ │ ├── zip_get_archive_comment.c
│ │ ├── zip_get_archive_flag.c
│ │ ├── zip_get_encryption_implementation.c
│ │ ├── zip_get_file_comment.c
│ │ ├── zip_get_name.c
│ │ ├── zip_get_num_entries.c
│ │ ├── zip_get_num_files.c
│ │ ├── zip_hash.c
│ │ ├── zip_io_util.c
│ │ ├── zip_memdup.c
│ │ ├── zip_name_locate.c
│ │ ├── zip_new.c
│ │ ├── zip_open.c
│ │ ├── zip_progress.c
│ │ ├── zip_random_unix.c
│ │ ├── zip_random_win32.c
│ │ ├── zip_rename.c
│ │ ├── zip_replace.c
│ │ ├── zip_set_archive_comment.c
│ │ ├── zip_set_archive_flag.c
│ │ ├── zip_set_default_password.c
│ │ ├── zip_set_file_comment.c
│ │ ├── zip_set_file_compression.c
│ │ ├── zip_set_name.c
│ │ ├── zip_source_begin_write.c
│ │ ├── zip_source_buffer.c
│ │ ├── zip_source_call.c
│ │ ├── zip_source_close.c
│ │ ├── zip_source_commit_write.c
│ │ ├── zip_source_compress.c
│ │ ├── zip_source_crc.c
│ │ ├── zip_source_error.c
│ │ ├── zip_source_file.c
│ │ ├── zip_source_filep.c
│ │ ├── zip_source_free.c
│ │ ├── zip_source_function.c
│ │ ├── zip_source_get_compression_flags.c
│ │ ├── zip_source_is_deleted.c
│ │ ├── zip_source_layered.c
│ │ ├── zip_source_open.c
│ │ ├── zip_source_pkware.c
│ │ ├── zip_source_read.c
│ │ ├── zip_source_remove.c
│ │ ├── zip_source_rollback_write.c
│ │ ├── zip_source_seek.c
│ │ ├── zip_source_seek_write.c
│ │ ├── zip_source_stat.c
│ │ ├── zip_source_supports.c
│ │ ├── zip_source_tell.c
│ │ ├── zip_source_tell_write.c
│ │ ├── zip_source_win32a.c
│ │ ├── zip_source_win32handle.c
│ │ ├── zip_source_win32utf8.c
│ │ ├── zip_source_win32w.c
│ │ ├── zip_source_window.c
│ │ ├── zip_source_winzip_aes_decode.c
│ │ ├── zip_source_winzip_aes_encode.c
│ │ ├── zip_source_write.c
│ │ ├── zip_source_zip.c
│ │ ├── zip_source_zip_new.c
│ │ ├── zip_stat.c
│ │ ├── zip_stat_index.c
│ │ ├── zip_stat_init.c
│ │ ├── zip_strerror.c
│ │ ├── zip_string.c
│ │ ├── zip_unchange.c
│ │ ├── zip_unchange_all.c
│ │ ├── zip_unchange_archive.c
│ │ ├── zip_unchange_data.c
│ │ ├── zip_utf-8.c
│ │ ├── zipconf.h
│ │ ├── zipint.h
│ │ └── zipwin32.h
│ ├── log.txt
│ ├── merge.c
│ ├── modzip.c
│ ├── png_utils.c
│ ├── protect.c
│ ├── protect.h
│ ├── protect_rawstr.h
│ ├── protect_str.c
│ ├── protect_str.h
│ ├── protect_transform.cpp
│ ├── syscheck.c
│ ├── transform
│ ├── util.c
│ └── util.h
│ └── res
│ ├── drawable
│ ├── appiconframed.png
│ ├── appiconhex1.png
│ ├── appiconhex2.png
│ ├── appiconhex3.png
│ ├── appiconhex4.png
│ ├── appiconhex5.png
│ ├── appiconround_bl.png
│ ├── appiconround_cy.png
│ ├── appiconround_gr.png
│ ├── appiconround_or.png
│ ├── editorpro.png
│ ├── editorpro2.png
│ ├── hexicon1.png
│ ├── hexicon2.png
│ ├── hexicon3.png
│ ├── hexicon4.png
│ └── hexicon5.png
│ ├── layout
│ ├── dlg_translate.xml
│ └── item_stringvalue_translate.xml
│ └── values
│ └── strings.xml
├── apkLibrary
├── build.gradle
└── src
│ └── main
│ ├── AndroidManifest.xml
│ └── java
│ └── com
│ └── gmail
│ └── heagoo
│ └── apklib
│ ├── AXMLModifier.java
│ ├── AXMLParser.java
│ ├── AXMLPrinter.java
│ ├── ManifestInfoCollector.java
│ ├── ReceiverScaner.java
│ ├── android
│ └── content
│ │ └── res
│ │ ├── AXmlResourceParser.java
│ │ ├── ChunkUtil.java
│ │ ├── IntReader.java
│ │ ├── StringBlock.java
│ │ └── XmlResourceParser.java
│ ├── asn1
│ ├── Asn1Box.java
│ ├── Asn1Data.java
│ ├── Asn1IA5String.java
│ ├── Asn1Integer.java
│ ├── Asn1Null.java
│ ├── Asn1ObjectId.java
│ ├── Asn1OctetString.java
│ ├── Asn1PrintableString.java
│ ├── Asn1Sequence.java
│ └── Asn1Set.java
│ ├── org
│ └── xmlpull
│ │ ├── renamed
│ │ └── MXSerializer.java
│ │ └── v1
│ │ ├── util
│ │ └── XmlPullUtil.java
│ │ └── wrapper
│ │ ├── XmlPullParserWrapper.java
│ │ ├── XmlPullWrapperFactory.java
│ │ ├── XmlSerializerWrapper.java
│ │ └── classic
│ │ ├── StaticXmlPullParserWrapper.java
│ │ ├── StaticXmlSerializerWrapper.java
│ │ ├── XmlPullParserDelegate.java
│ │ └── XmlSerializerDelegate.java
│ └── sign
│ ├── ImageTools.java
│ ├── MyBase64.java
│ ├── PrivateKeyTransformer.java
│ ├── SignApk.java
│ └── UTF8Writer.java
├── appDataEditor
├── build.gradle
└── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── java
│ └── com
│ │ └── gmail
│ │ └── heagoo
│ │ └── appdm
│ │ ├── ApkSaveDialog.java
│ │ ├── BasicInfoAdapter.java
│ │ ├── BasicInfoItem.java
│ │ ├── KeyValueDialog.java
│ │ ├── NameAndPathAdapter.java
│ │ ├── PrefDetailActivity.java
│ │ ├── PrefOverallActivity.java
│ │ ├── RootFileAdapter.java
│ │ ├── db
│ │ ├── BackupInfo.java
│ │ ├── DBHelper.java
│ │ └── DBManager.java
│ │ └── util
│ │ ├── ADManager.java
│ │ ├── AddSharedUserId.java
│ │ ├── AppInfoUtil.java
│ │ ├── CpuDetector.java
│ │ ├── FastXmlSerializer.java
│ │ ├── FileCopyUtil.java
│ │ ├── FileRecord.java
│ │ ├── FilenameComparator.java
│ │ ├── InterestAdManager.java
│ │ ├── OpenFiles.java
│ │ ├── PaidAppsChecker.java
│ │ ├── RefInvoke.java
│ │ ├── SDCard.java
│ │ ├── SignatureInfoReader.java
│ │ ├── StorageUtil.java
│ │ ├── StringPair.java
│ │ ├── VersionChecker.java
│ │ └── XmlUtils.java
│ └── res
│ ├── drawable-hdpi
│ ├── appdm_button.9.png
│ └── appdm_button_hilight.9.png
│ ├── drawable
│ ├── appdm_btn_custom.xml
│ ├── appdm_config.png
│ ├── appdm_config_blue.png
│ ├── appdm_db.png
│ ├── appdm_db_blue.png
│ ├── appdm_files.png
│ ├── appdm_files_blue.png
│ ├── appdm_info.png
│ ├── appdm_info_blue.png
│ ├── appdm_next.png
│ ├── appdm_previous.png
│ ├── bg_button_style.xml
│ ├── bg_edittext_dark.xml
│ ├── bg_edittext_focused_dark.xml
│ ├── bg_edittext_normal_dark.xml
│ ├── folderutil_file.png
│ ├── folderutil_folder.png
│ ├── t1046_button.xml
│ └── t1046_edittext.xml
│ ├── layout
│ ├── appdm_activity_dataoverview.xml
│ ├── appdm_activity_prefdetail.xml
│ ├── appdm_dialog_keyvalue.xml
│ ├── appdm_dlg_saveapk.xml
│ ├── appdm_item_basicinfo.xml
│ ├── appdm_item_file.xml
│ └── appdm_item_nameandpath.xml
│ ├── values-zh
│ └── strings.xml
│ └── values
│ ├── dimens.xml
│ ├── filetypes.xml
│ ├── strings.xml
│ └── styles.xml
├── appListUtil
├── build.gradle
└── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── java
│ └── com
│ │ └── gmail
│ │ └── heagoo
│ │ └── applistutil
│ │ ├── AppInfo.java
│ │ ├── AppInfoComparator.java
│ │ ├── AppSearchThread.java
│ │ ├── BaseAppActivity.java
│ │ ├── IAppCustomize.java
│ │ ├── IAppSearch.java
│ │ ├── IConsumeSearch.java
│ │ └── MyAppListAdapter.java
│ └── res
│ ├── drawable
│ ├── applistutil_btn_custom.xml
│ ├── applistutil_button.9.png
│ ├── applistutil_button_hilight.9.png
│ └── commonutil_progressbar.xml
│ ├── layout
│ ├── applistutil_activity_app_list.xml
│ └── applistutil_app_item.xml
│ ├── values-zh-rTW
│ └── strings.xml
│ └── values
│ ├── arrays.xml
│ ├── strings.xml
│ └── styles.xml
├── build.gradle
├── debug.log
├── gradle.properties
├── gradlew
├── gradlew.bat
├── httpServer
├── .gitignore
├── build.gradle
├── libs
│ └── nanohttpd-2.2.0.jar
├── proguard-rules.pro
└── src
│ ├── androidTest
│ └── java
│ │ └── com
│ │ └── gmail
│ │ └── heagoo
│ │ └── httpserver
│ │ └── ExampleInstrumentedTest.java
│ ├── main
│ ├── AndroidManifest.xml
│ ├── java
│ │ └── com
│ │ │ └── gmail
│ │ │ └── heagoo
│ │ │ └── httpserver
│ │ │ ├── FileComparator.java
│ │ │ ├── HttpServer.java
│ │ │ ├── HttpService.java
│ │ │ ├── HttpServiceManager.java
│ │ │ └── LogUtil.java
│ └── res
│ │ └── values
│ │ ├── colors.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ └── test
│ └── java
│ └── com
│ └── gmail
│ └── heagoo
│ └── httpserver
│ └── ExampleUnitTest.java
├── imageViewLib
├── build.gradle
├── libs
│ └── gesture-imageview.jar
└── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── java
│ └── com
│ │ └── gmail
│ │ └── heagoo
│ │ └── imageviewlib
│ │ └── ViewZipImageActivity.java
│ └── res
│ └── layout
│ └── imageviewlib_activity_empty.xml
├── local.properties
├── settings.gradle
└── sqliteUtil
├── build.gradle
└── src
└── main
├── AndroidManifest.xml
├── java
└── com
│ └── gmail
│ └── heagoo
│ └── sqliteutil
│ ├── CustomScrollView.java
│ ├── RootCommand.java
│ ├── SDCard.java
│ ├── SqliteRowViewActivity.java
│ ├── SqliteTableListActivity.java
│ ├── SqliteTableViewActivity.java
│ ├── TableRecordDialog.java
│ └── util
│ ├── HexUtil.java
│ ├── MySimpleAdapter.java
│ └── PaddingTable.java
└── res
├── drawable
├── bg_edittext_dark.xml
├── bg_edittext_focused_dark.xml
├── bg_edittext_normal_dark.xml
├── sql_btn_custom.xml
├── sql_button.9.png
├── sql_button_hilight.9.png
├── sql_database_icon.png
├── sql_headerbg.png
├── sql_next.png
├── sql_previous.png
├── t1046_button.xml
└── t1046_edittext.xml
├── layout
├── sql_activity_rowview.xml
├── sql_activity_tablelist.xml
├── sql_activity_tableview.xml
└── sql_dialog_tablerecord.xml
└── values
├── dimens.xml
├── strings.xml
└── styles.xml
/.gitignore:
--------------------------------------------------------------------------------
1 | *.apk
2 | */build/
3 | apkEditorPro/release/
4 | build/
5 | gradle/
6 | .gradle/
--------------------------------------------------------------------------------
/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/PngEditor/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/PngEditor/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/PngEditor/src/main/java/com/gmail/heagoo/pngeditor/HelpActivity.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.pngeditor;
2 |
3 | //import android.support.v7.app.AppCompatActivity;
4 |
5 |
6 | public class HelpActivity extends WebViewActivity {
7 |
8 | public HelpActivity() {
9 | super(R.string.help,
10 | "file:///android_res/raw/pngeditor_help.htm",
11 | false);
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/PngEditor/src/main/java/com/gmail/heagoo/pngeditor/ImageEditor.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.pngeditor;
2 |
3 | import android.graphics.Bitmap;
4 |
5 | public interface ImageEditor {
6 | void setParam(String name, Object value);
7 |
8 | Bitmap edit(Bitmap bitmap);
9 |
10 | boolean isModified();
11 | }
12 |
--------------------------------------------------------------------------------
/PngEditor/src/main/res/drawable-hdpi/ic_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/PngEditor/src/main/res/drawable-hdpi/ic_close.png
--------------------------------------------------------------------------------
/PngEditor/src/main/res/drawable-hdpi/ic_www.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/PngEditor/src/main/res/drawable-hdpi/ic_www.png
--------------------------------------------------------------------------------
/PngEditor/src/main/res/drawable-hdpi/pngeditor_check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/PngEditor/src/main/res/drawable-hdpi/pngeditor_check.png
--------------------------------------------------------------------------------
/PngEditor/src/main/res/drawable-hdpi/pngeditor_cross.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/PngEditor/src/main/res/drawable-hdpi/pngeditor_cross.png
--------------------------------------------------------------------------------
/PngEditor/src/main/res/drawable-hdpi/pngeditor_save_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/PngEditor/src/main/res/drawable-hdpi/pngeditor_save_white.png
--------------------------------------------------------------------------------
/PngEditor/src/main/res/drawable/pngeditor_arrowleft.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
--------------------------------------------------------------------------------
/PngEditor/src/main/res/drawable/pngeditor_clickable_img_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/PngEditor/src/main/res/drawable/pngeditor_coloritem_blue.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/PngEditor/src/main/res/drawable/pngeditor_coloritem_grey.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/PngEditor/src/main/res/raw/pngeditor_tool_removebg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/PngEditor/src/main/res/raw/pngeditor_tool_removebg.jpg
--------------------------------------------------------------------------------
/PngEditor/src/main/res/raw/pngeditor_tool_resize.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/PngEditor/src/main/res/raw/pngeditor_tool_resize.jpg
--------------------------------------------------------------------------------
/PngEditor/src/main/res/raw/pngeditor_tool_transparent.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/PngEditor/src/main/res/raw/pngeditor_tool_transparent.jpg
--------------------------------------------------------------------------------
/PngEditor/src/main/res/raw/pngeditor_tools_menu.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/PngEditor/src/main/res/raw/pngeditor_tools_menu.jpg
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | **ApkEditor Pro v1.10.0(11.02.2019)**
2 |
3 | [RuStore](https://apps.rustore.ru/app/com.mcal.apkeditor.pro "RuStore")
4 |
5 | [4PDA](https://4pda.to/forum/index.php?showtopic=575450 "4PDA")
6 |
7 | [Telegram](https://t.me/apkeditorproofficial "Telegram")
8 |
9 | Owner: timscriptov
10 |
11 | Author: SteelWorks
--------------------------------------------------------------------------------
/_AndroidCommon/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/_AndroidCommon/src/main/java/com/gmail/heagoo/common/CommandInterface.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.common;
2 |
3 | public interface CommandInterface {
4 |
5 | public boolean runCommand(String command, String[] env, Integer timeout);
6 |
7 | public boolean runCommand(String command, String[] env, Integer timeout, boolean readWhileExec);
8 |
9 | public String getStdOut();
10 |
11 | public String getStdError();
12 | }
13 |
--------------------------------------------------------------------------------
/_AndroidCommon/src/main/java/com/gmail/heagoo/common/ICommonCallback.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.common;
2 |
3 | /**
4 | * Created by phe3 on 1/30/2017.
5 | */
6 |
7 | public interface ICommonCallback {
8 | public void doCallback();
9 | }
10 |
--------------------------------------------------------------------------------
/_AndroidCommon/src/main/java/com/gmail/heagoo/common/Pair.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.common;
2 |
3 |
4 | public class Pair {
5 | public T1 first;
6 | public T2 second;
7 |
8 | public Pair(T1 t1, T2 t2) {
9 | this.first = t1;
10 | this.second = t2;
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/_AndroidCommon/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Working …
4 |
5 |
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/java/com/gmail/heagoo/neweditor/InputMethodWatcher.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.neweditor;
2 |
3 | public interface InputMethodWatcher {
4 | void setInputMethodVisible(boolean visible);
5 | }
6 |
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/java/com/gmail/heagoo/neweditor/ScrollViewListener.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.neweditor;
2 |
3 | public interface ScrollViewListener {
4 | void onScrollChanged(ObScrollView observableScrollView, int i, int i2, int i3, int i4);
5 | }
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/java/com/gmail/heagoo/neweditor/TextSelectionListener.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.neweditor;
2 |
3 | public interface TextSelectionListener {
4 | void selectionChanged(int i, int i2);
5 | }
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/java/com/gmail/heagoo/neweditor/TokenHandler.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.neweditor;
2 |
3 | import com.gmail.heagoo.neweditor.TokenMarker.LineContext;
4 |
5 | public interface TokenHandler {
6 | void handleToken(Segment segment, byte b, int i, int i2, LineContext lineContext);
7 |
8 | void setLineContext(LineContext lineContext);
9 | }
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_colorpad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_colorpad.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_colorpad_new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_colorpad_new.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_config.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_config.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_copy.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_find.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_find.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_go.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_go.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_go_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_go_dark.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_ignorecase.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_ignorecase.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_ignorecase_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_ignorecase_dark.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_regexp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_regexp.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_regexp_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_regexp_dark.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_replace.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_replace.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_replace_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_replace_dark.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_replaceall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_replaceall.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_replaceall_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_replaceall_dark.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_save.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_search.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_search_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_search_dark.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_slide_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_slide_left.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable-hdpi/edit_slide_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/_AndroidEditor/src/main/res/drawable-hdpi/edit_slide_right.png
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable/coloritem_11.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable/coloritem_33.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/drawable/selector_iv_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/_AndroidEditor/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Find
4 | Replace
5 |
6 |
--------------------------------------------------------------------------------
/apkEditor/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/brut/androlib/res/decoder/ResourceIdProvider.java:
--------------------------------------------------------------------------------
1 | package brut.androlib.res.decoder;
2 |
3 | // Use to get the resource name by id
4 | public interface ResourceIdProvider {
5 |
6 | public String getNameById(int id);
7 | }
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/brut/androlib/res/util/VersionInfo.java:
--------------------------------------------------------------------------------
1 | package brut.androlib.res.util;
2 |
3 | public class VersionInfo {
4 | public String versionCode;
5 | public String versionName;
6 | }
7 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/brut/common/BrutExceptio.java:
--------------------------------------------------------------------------------
1 | package brut.common;
2 |
3 | public class BrutExceptio {
4 |
5 | }
6 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/brut/util/StringUtils.java:
--------------------------------------------------------------------------------
1 | package brut.util;
2 |
3 | public class StringUtils {
4 |
5 | public static String replace(String src, String pattern, String replace) {
6 | return src.replaceAll(pattern, replace);
7 | }
8 |
9 | }
10 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/SelectionChangedListener.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo;
2 |
3 |
4 | public interface SelectionChangedListener {
5 | void textSelected(int lineIndex, int start, int end, String strSelected);
6 | }
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/ApkEditorApplication.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor;
2 |
3 | import android.app.Application;
4 |
5 | public class ApkEditorApplication extends Application {
6 |
7 | }
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/ApkParseConsumer.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor;
2 |
3 | import java.util.Map;
4 |
5 | public interface ApkParseConsumer {
6 |
7 | void decodeFailed(String errMessage);
8 |
9 | void resTableDecoded(boolean ret);
10 |
11 | void resourceDecoded(Map fileEntry2ZipEntry);
12 |
13 | }
14 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/CodeEditInterface.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor;
2 |
3 | public interface CodeEditInterface {
4 |
5 | // IN: apkFilePath
6 | // The modified dex file is saved into dexFilePath
7 | public void editDexFile(String apkFilePath, String dexFilePath) throws Exception;
8 | }
9 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/IGeneralCallback.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor;
2 |
3 | public interface IGeneralCallback {
4 |
5 | public void callbackFunc();
6 | }
7 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/ResSelectionChangeListener.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor;
2 |
3 | import java.util.Set;
4 |
5 | public interface ResSelectionChangeListener {
6 |
7 | public void selectionChanged(Set selected);
8 | }
9 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/SmaliMethodInfo.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor;
2 |
3 | /**
4 | * Created by phe3 on 1/31/2017.
5 | */
6 |
7 | public class SmaliMethodInfo {
8 | public String methodDesc;
9 | public int lineIndex; // index start at 0
10 |
11 | public SmaliMethodInfo(int lineIndex, String method) {
12 | this.lineIndex = lineIndex;
13 | this.methodDesc = method;
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/SomethingChangedListener.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor;
2 |
3 | public interface SomethingChangedListener {
4 | public void somethingChanged();
5 | }
6 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/ce/IApkMaking.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor.ce;
2 |
3 | import android.content.Context;
4 |
5 | import java.util.Map;
6 |
7 | public interface IApkMaking {
8 |
9 | public void prepareReplaces(Context ctx, String apkFilePath,
10 | Map allReplaces, IDescriptionUpdate updater)
11 | throws Exception;
12 | }
13 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/ce/IDescriptionUpdate.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor.ce;
2 |
3 | public interface IDescriptionUpdate {
4 |
5 | public void updateDescription(String strDesc);
6 | }
7 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/ce/e/IModifyTagAttribute.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor.ce.e;
2 |
3 | /**
4 | * Created by phe3 on 2/1/2017.
5 | */
6 |
7 | public interface IModifyTagAttribute {
8 | public void modify(Tag.TagAttr attr);
9 | }
10 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/dex/InvalidItemIndex.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor.dex;
2 |
3 | public class InvalidItemIndex extends MyException {
4 |
5 | private static final long serialVersionUID = 5034685574646581891L;
6 |
7 | public InvalidItemIndex(int index, String fmt, Object... args) {
8 | super(fmt, args);
9 | }
10 |
11 | }
12 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/dex/MyException.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor.dex;
2 |
3 | public class MyException extends Exception {
4 |
5 | private static final long serialVersionUID = 5284745021121448343L;
6 |
7 | public MyException(String fmt, Object... args) {
8 | super(String.format(fmt, args));
9 | }
10 |
11 | }
12 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/inf/IJavaExtractor.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor.inf;
2 |
3 | public interface IJavaExtractor {
4 | public boolean extract();
5 |
6 | public String getErrorMessage();
7 | }
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/patch/Patch.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor.patch;
2 |
3 | import java.util.ArrayList;
4 | import java.util.List;
5 |
6 | public class Patch {
7 |
8 | public static final int engineVersion = 1;
9 | // V1
10 | public int requiredEngine;
11 | public String author;
12 | public String packagename;
13 | public List rules = new ArrayList();
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/se/IDirChanged.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor.se;
2 |
3 | public interface IDirChanged {
4 |
5 | public void dirChanged(String dir);
6 | }
7 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/se/ViewHolder.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor.se;
2 |
3 | import android.view.View;
4 | import android.widget.ImageView;
5 | import android.widget.TextView;
6 |
7 | public class ViewHolder {
8 | ImageView icon;
9 | TextView filename;
10 | TextView desc1;
11 |
12 | View editMenu;
13 | View saveMenu;
14 | }
15 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/apkeditor/smali/ISmaliAssembleCallback.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.apkeditor.smali;
2 |
3 | public interface ISmaliAssembleCallback {
4 |
5 | public void updateAssembledFiles(int assembledFiles, int totalFiles);
6 | }
7 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/com/gmail/heagoo/folderlist/IListItemProducer.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.folderlist;
2 |
3 | import android.graphics.drawable.Drawable;
4 |
5 | public interface IListItemProducer {
6 |
7 | public Drawable getFileIcon(String dirPath, FileRecord record);
8 |
9 | public String getDetail1(String dirPath, FileRecord record);
10 | }
11 |
--------------------------------------------------------------------------------
/apkEditor/src/main/java/common/types/ProjectInfo_V1.java:
--------------------------------------------------------------------------------
1 | package common.types;
2 |
3 | import java.io.Serializable;
4 |
5 | public class ProjectInfo_V1 implements Serializable {
6 |
7 | // The original apk we are editing
8 | public String apkPath;
9 |
10 | public String decodeRootPath;
11 | public ActivityState_V1 state;
12 | }
13 |
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/Android.mk:
--------------------------------------------------------------------------------
1 | apkeditor/Android.mk
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/Application.mk:
--------------------------------------------------------------------------------
1 | apkeditor/Application.mk
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/apkeditor/Application.mk:
--------------------------------------------------------------------------------
1 | #APP_ABI := all
2 | APP_ABI := armeabi-v7a,arm64-v8a,x86,x86_64
3 |
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/apkeditor/libzip/gladman-fcrypt/Makefile.am:
--------------------------------------------------------------------------------
1 | EXTRA_DIST= \
2 | aes.h \
3 | aescrypt.c \
4 | aeskey.c \
5 | aesopt.h \
6 | aestab.c \
7 | fileenc.c \
8 | fileenc.h \
9 | hmac.c \
10 | hmac.h \
11 | pwd2key.c \
12 | pwd2key.h \
13 | sha1.c \
14 | sha1.h
15 |
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/build_and_copy.sh:
--------------------------------------------------------------------------------
1 | /home/pujiang/android-ndk-r10d/ndk-build
2 |
3 | scp ../libs/x86/libsyscheck.so root@192.168.5.254:/sda5/pujiang/tmp/libsyscheck_x86.so
4 | scp ../libs/armeabi/libsyscheck.so root@192.168.5.254:/sda5/pujiang/tmp/libsyscheck_arm.so
5 |
6 |
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/entry.c:
--------------------------------------------------------------------------------
1 | apkeditor/entry.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/fileenc.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/gladman-fcrypt/fileenc.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/filemon/Application.mk:
--------------------------------------------------------------------------------
1 | #APP_ABI := all
2 | APP_ABI := armeabi,x86
3 |
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/filemon/build-client.sh:
--------------------------------------------------------------------------------
1 | cp Android-client.mk ../Android.mk
2 | cp common.h ../
3 | cp client.c ../
4 | /home/pujiang/android-ndk-r10d/ndk-build
5 |
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/filemon/build-exe.sh:
--------------------------------------------------------------------------------
1 | cp Android-exe.mk ../Android.mk
2 | cp common.h ../
3 | cp monitor.c ../
4 | cp filemon.c ../
5 | /home/pujiang/android-ndk-r10d/ndk-build
6 |
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/filemon/build-lib.sh:
--------------------------------------------------------------------------------
1 | cp Android.mk ../
2 | cp filemon.c ../
3 | /home/pujiang/android-ndk-r10d/ndk-build
4 |
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/injector/jni/Android.appdm:
--------------------------------------------------------------------------------
1 | LOCAL_PATH := $(call my-dir)
2 |
3 | include $(CLEAR_VARS)
4 |
5 | LOCAL_LDLIBS += -L$(SYSROOT)/usr/lib -llog
6 | #LOCAL_ARM_MODE := arm
7 | LOCAL_MODULE := appdm
8 | LOCAL_SRC_FILES := appdm.c memsearch.c
9 | include $(BUILD_SHARED_LIBRARY)
10 |
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/injector/jni/Android.controller:
--------------------------------------------------------------------------------
1 | LOCAL_PATH := $(call my-dir)
2 |
3 | include $(CLEAR_VARS)
4 |
5 | LOCAL_LDLIBS += -L$(SYSROOT)/usr/lib -llog
6 | #LOCAL_ARM_MODE := arm
7 | LOCAL_MODULE := controller
8 | LOCAL_SRC_FILES := controller.c
9 | include $(BUILD_EXECUTABLE)
10 |
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/injector/jni/Android.fkme:
--------------------------------------------------------------------------------
1 |
2 | LOCAL_PATH := $(call my-dir)
3 |
4 | include $(CLEAR_VARS)
5 |
6 | LOCAL_LDLIBS += -L$(SYSROOT)/usr/lib -llog
7 | #LOCAL_ARM_MODE := arm
8 | LOCAL_MODULE := fkme
9 | LOCAL_SRC_FILES := libfkme.c memsearch.c
10 | include $(BUILD_SHARED_LIBRARY)
11 |
12 |
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/injector/jni/Android.memctl:
--------------------------------------------------------------------------------
1 | LOCAL_PATH := $(call my-dir)
2 |
3 | include $(CLEAR_VARS)
4 |
5 | LOCAL_LDLIBS += -L$(SYSROOT)/usr/lib -llog
6 | #LOCAL_ARM_MODE := arm
7 | LOCAL_MODULE := memctl
8 | LOCAL_SRC_FILES := libmemctl.c memctl.c
9 | include $(BUILD_SHARED_LIBRARY)
10 |
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/injector/jni/Android.mk:
--------------------------------------------------------------------------------
1 |
2 | LOCAL_PATH := $(call my-dir)
3 |
4 | include $(CLEAR_VARS)
5 |
6 | LOCAL_LDLIBS += -L$(SYSROOT)/usr/lib -llog
7 | #LOCAL_ARM_MODE := arm
8 | LOCAL_MODULE := fkme
9 | LOCAL_SRC_FILES := libfkme.c memsearch.c
10 | include $(BUILD_SHARED_LIBRARY)
11 |
12 |
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/injector/jni/memsearch.tar.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/jni/injector/jni/memsearch.tar.gz
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/log.txt:
--------------------------------------------------------------------------------
1 | padSize=7
2 | padSize=7
3 | padSize=9
4 | padSize=6
5 | padSize=6
6 | padSize=3
7 | padSize=2
8 | padded=40
9 |
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/mkstemp.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/mkstemp.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/mycopy/jni/Application.mk:
--------------------------------------------------------------------------------
1 | #APP_ABI := all
2 | APP_ABI := armeabi,x86
3 |
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/png_utils.c:
--------------------------------------------------------------------------------
1 | #include
2 |
3 | JNIEXPORT jint JNICALL
4 | Java_com_gmail_heagoo_apkeditor_NdkUtil_todo ( JNIEnv* env,
5 | jobject thiz )
6 | {
7 | return 0;
8 | }
9 |
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/syscheck.c:
--------------------------------------------------------------------------------
1 | apkeditor/syscheck.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/tmp/protect:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/jni/tmp/protect
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/transform:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/jni/transform
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_add.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_add.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_add_dir.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_add_dir.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_add_entry.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_add_entry.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_algorithm_bzip2.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_algorithm_bzip2.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_algorithm_deflate.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_algorithm_deflate.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_buffer.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_buffer.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_close.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_close.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_delete.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_delete.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_dir_add.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_dir_add.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_dirent.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_dirent.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_discard.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_discard.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_entry.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_entry.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_err_str.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_err_str.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_error.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_error.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_error_clear.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_error_clear.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_error_get.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_error_get.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_error_get_sys_type.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_error_get_sys_type.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_error_strerror.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_error_strerror.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_error_to_str.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_error_to_str.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_extra_field.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_extra_field.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_extra_field_api.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_extra_field_api.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_fclose.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_fclose.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_fdopen.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_fdopen.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_file_add.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_file_add.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_file_error_clear.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_file_error_clear.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_file_error_get.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_file_error_get.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_file_get_comment.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_file_get_comment.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_file_get_external_attributes.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_file_get_external_attributes.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_file_get_offset.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_file_get_offset.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_file_rename.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_file_rename.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_file_replace.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_file_replace.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_file_set_comment.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_file_set_comment.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_file_set_external_attributes.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_file_set_external_attributes.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_file_set_mtime.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_file_set_mtime.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_file_strerror.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_file_strerror.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_filerange_crc.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_filerange_crc.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_fopen.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_fopen.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_fopen_encrypted.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_fopen_encrypted.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_fopen_index.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_fopen_index.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_fopen_index_encrypted.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_fopen_index_encrypted.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_fread.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_fread.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_get_archive_comment.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_get_archive_comment.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_get_archive_flag.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_get_archive_flag.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_get_encryption_implementation.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_get_encryption_implementation.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_get_file_comment.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_get_file_comment.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_get_name.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_get_name.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_get_num_entries.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_get_num_entries.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_get_num_files.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_get_num_files.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_hash.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_hash.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_io_util.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_io_util.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_memdup.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_memdup.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_name_locate.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_name_locate.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_new.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_new.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_open.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_open.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_progress.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_progress.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_random_unix.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_random_unix.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_rename.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_rename.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_replace.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_replace.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_set_archive_comment.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_set_archive_comment.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_set_archive_flag.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_set_archive_flag.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_set_default_password.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_set_default_password.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_set_file_comment.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_set_file_comment.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_set_file_compression.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_set_file_compression.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_set_name.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_set_name.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_begin_write.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_begin_write.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_buffer.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_buffer.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_call.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_call.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_close.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_close.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_commit_write.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_commit_write.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_compress.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_compress.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_crc.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_crc.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_error.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_error.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_file.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_file.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_filep.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_filep.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_free.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_free.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_function.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_function.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_get_compression_flags.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_get_compression_flags.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_is_deleted.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_is_deleted.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_layered.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_layered.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_open.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_open.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_pkware.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_pkware.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_read.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_read.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_remove.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_remove.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_rollback_write.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_rollback_write.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_seek.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_seek.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_seek_write.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_seek_write.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_stat.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_stat.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_supports.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_supports.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_tell.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_tell.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_tell_write.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_tell_write.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_win32a.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_win32a.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_win32handle.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_win32handle.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_win32utf8.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_win32utf8.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_win32w.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_win32w.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_window.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_window.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_write.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_write.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_zip.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_zip.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_source_zip_new.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_source_zip_new.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_stat.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_stat.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_stat_index.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_stat_index.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_stat_init.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_stat_init.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_strerror.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_strerror.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_string.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_string.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_unchange.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_unchange.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_unchange_all.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_unchange_all.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_unchange_archive.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_unchange_archive.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_unchange_data.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_unchange_data.c
--------------------------------------------------------------------------------
/apkEditor/src/main/jni/zip_utf-8.c:
--------------------------------------------------------------------------------
1 | apkeditor/libzip/zip_utf-8.c
--------------------------------------------------------------------------------
/apkEditor/src/main/res/color/label_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/color/label_color_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/color/textview_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/cb_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/cb_checked.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/cb_unchecked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/cb_unchecked.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/down_arrow_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/down_arrow_grey.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/down_arrow_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/down_arrow_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/edit_code_snippet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/edit_code_snippet.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/edit_editor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/edit_editor.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/edit_html.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/edit_html.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/edit_html_old.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/edit_html_old.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/edit_html_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/edit_html_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/edit_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/edit_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/extsdcard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/extsdcard.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/extsdcard_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/extsdcard_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/handdraw_edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/handdraw_edit.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/handdraw_save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/handdraw_save.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/html.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/html.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/html_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/html_blue.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_add_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_add_file.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_add_file_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_add_file_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_add_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_add_folder.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_add_folder_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_add_folder_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_case_insensitive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_case_insensitive.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_case_insensitive_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_case_insensitive_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_case_sensitive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_case_sensitive.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_case_sensitive_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_case_sensitive_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_clipboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_clipboard.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_clipboard_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_clipboard_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_colorpad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_colorpad.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_delete.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_delete_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_delete_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_details.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_details.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_details_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_details_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_donate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_donate.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_done.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_done.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_done_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_done_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_drawer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_drawer.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_home.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_home_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_home_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_patch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_patch.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_rename.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_rename.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_replace.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_replace.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_replace_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_replace_blue.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_replace_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_replace_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_rotate.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_save.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_save_new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_save_new.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_save_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_save_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_save_white_new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_save_white_new.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_search.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_search_big.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_search_big.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_search_big_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_search_big_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_search_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_search_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_select.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_select.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_select_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_select_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_toolbar_more.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_toolbar_more.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/ic_www.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/ic_www.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/listfile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/listfile.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/listfile_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/listfile_blue.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/more.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/more.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/more_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/more_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/namecard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/namecard.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/navi_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/navi_right.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/pager_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/pager_bg.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/pager_focus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/pager_focus.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/parse_error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/parse_error.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/parser_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/parser_logo.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/pause.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/pencil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/pencil.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/pencil_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/pencil_blue.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/pencil_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/pencil_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/play.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/save_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/save_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/sdcard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/sdcard.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/sdcard_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/sdcard_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/searchtxt_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/searchtxt_checked.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/searchtxt_checked_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/searchtxt_checked_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/searchtxt_unchecked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/searchtxt_unchecked.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/searchtxt_unchecked_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/searchtxt_unchecked_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/smali_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/smali_blue.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/smali_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/smali_grey.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/t1046_dex2smali_blue2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/t1046_dex2smali_blue2.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/t1046_dex2smali_grey2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/t1046_dex2smali_grey2.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/t1046_down_arrow_grey2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/t1046_down_arrow_grey2.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/t1046_down_arrow_white2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/t1046_down_arrow_white2.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/textfile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/textfile.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/translate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/translate.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-hdpi/translate_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-hdpi/translate_grey.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-nodpi/arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-nodpi/arrow_down.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-nodpi/arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-nodpi/arrow_right.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-xhdpi/ic_java.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-xhdpi/ic_java.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-xxhdpi/array_switch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-xxhdpi/array_switch.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-xxhdpi/ic_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-xxhdpi/ic_about.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-xxhdpi/ic_about_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-xxhdpi/ic_about_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-xxhdpi/ic_project.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-xxhdpi/ic_project.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-xxhdpi/ic_project_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-xxhdpi/ic_project_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-xxhdpi/ic_setting.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-xxhdpi/ic_setting.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-xxhdpi/ic_setting_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-xxhdpi/ic_setting_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-xxhdpi/image_download.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-xxhdpi/image_download.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-xxhdpi/image_download_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-xxhdpi/image_download_white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-xxhdpi/rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-xxhdpi/rotate.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable-xxhdpi/rotate_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable-xxhdpi/rotate_pressed.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/apk_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/apk_icon.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/apkeditor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/apkeditor.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/appdm_next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/appdm_next.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/appdm_previous.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/appdm_previous.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/applistutil_button.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/applistutil_button.9.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/applistutil_button_hilight.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/applistutil_button_hilight.9.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/bg_edittext_focused.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
11 |
14 |
15 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/bg_edittext_normal.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
11 |
14 |
15 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/bg_edittext_pressed.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
11 |
14 |
15 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/bg_icon_addlanguage.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/bg_icon_dex2smali.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/bg_icon_down_arrow.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/bg_icon_edit.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/bg_icon_edit_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/bg_icon_rotate.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/bg_icon_translate.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/big_cursor.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/blue.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/check_green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/check_green.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/color_list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/coloritem_30.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/coloritem_cc.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/coloritem_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/coloritem_ff.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/coloritem_littleblue.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/coloritem_orange.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/colorview_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/colorview_bg.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/editor_log.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/editor_log.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/et_background_white.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/failed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/failed.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/folderutil_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/folderutil_file.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/folderutil_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/folderutil_folder.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/folderutil_listitem_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/folderutil_listitem_bg_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | -
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/folderutil_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/folderutil_up.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/icon_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/icon_folder.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/icon_folder_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/icon_folder_grey.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/icon_manifest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/icon_manifest.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/icon_manifest_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/icon_manifest_grey.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/icon_text.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/icon_text.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/icon_text_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/icon_text_grey.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/list_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/listitem_bg_normal.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/listitem_bg_normal_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/listitem_bg_pressed.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/listitem_bg_pressed_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/plus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/plus.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/plus_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/plus_grey.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/selector_checkbox.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/selector_menu_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/selector_menu_dark2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/selector_menu_light.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/selector_menu_light2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/selector_slim_spinner.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/slim_spinner_normal.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/slim_spinner_normal.9.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/slim_spinner_pressed.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/slim_spinner_pressed.9.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/succeed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/succeed.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/t1046_bg_icon_dex2smali2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/t1046_bg_icon_down_arrow2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/t1046_bg_mf_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/t1046_bg_z_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/t1046_color_win.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/t1046_color_win.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/textview_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/togglebutton_off.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/togglebutton_off.9.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/togglebutton_on.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/togglebutton_on.9.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/util_xml_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/util_xml_file.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/drawable/white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/drawable/white.png
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-de/app_select.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-de/app_select.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-de/common_edit.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-de/common_edit.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-de/editor_snapshot1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-de/editor_snapshot1.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-de/editor_snapshot2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-de/editor_snapshot2.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-de/example3_step2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-de/example3_step2.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-de/example5_step3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-de/example5_step3.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-de/layout_edit.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-de/layout_edit.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-de/movable_edit.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-de/movable_edit.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-es/app_select.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-es/app_select.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-es/button_after.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-es/button_after.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-es/button_before.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-es/button_before.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-es/common_edit.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-es/common_edit.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-es/editor_snapshot1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-es/editor_snapshot1.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-es/editor_snapshot2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-es/editor_snapshot2.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-es/example1_step1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-es/example1_step1.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-es/example1_step2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-es/example1_step2.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-es/example1_step3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-es/example1_step3.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-es/example3_step2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-es/example3_step2.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-es/example4_step3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-es/example4_step3.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-es/example5_step3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-es/example5_step3.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-es/layout_edit.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-es/layout_edit.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-es/movable_edit.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-es/movable_edit.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw-iw/help.htm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw-iw/help.htm
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/app_select.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/app_select.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/button_after.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/button_after.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/button_before.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/button_before.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/common_edit.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/common_edit.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/editor_snapshot1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/editor_snapshot1.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/editor_snapshot2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/editor_snapshot2.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/example1_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/example1_1.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/example1_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/example1_2.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/example1_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/example1_3.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/example1_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/example1_4.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/example1_5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/example1_5.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/example2_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/example2_1.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/example2_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/example2_2.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/example2_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/example2_3.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/example2_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/example2_4.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/example2_5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/example2_5.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/example3_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/example3_1.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/example3_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/example3_2.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/example4_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/example4_1.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/example5_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/example5_1.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/layout_edit.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/layout_edit.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/logo.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/raw/movable_edit.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditor/src/main/res/raw/movable_edit.jpg
--------------------------------------------------------------------------------
/apkEditor/src/main/res/values/colormixer_attrs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 16dp
5 | 16dp
6 |
7 | 5.0dip
8 |
9 |
10 |
--------------------------------------------------------------------------------
/apkEditor/src/main/res/xml/filepaths.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
9 |
12 |
--------------------------------------------------------------------------------
/apkEditorPro/libs/android-5.1-clst-core.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/android-5.1-clst-core.jar
--------------------------------------------------------------------------------
/apkEditorPro/libs/baksmali-2.2.0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/baksmali-2.2.0.jar
--------------------------------------------------------------------------------
/apkEditorPro/libs/baksmali-2.2.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/baksmali-2.2.3.jar
--------------------------------------------------------------------------------
/apkEditorPro/libs/baksmali-2.2.5.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/baksmali-2.2.5.jar
--------------------------------------------------------------------------------
/apkEditorPro/libs/baksmali-2.4.0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/baksmali-2.4.0.jar
--------------------------------------------------------------------------------
/apkEditorPro/libs/dx-1.10.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/dx-1.10.jar
--------------------------------------------------------------------------------
/apkEditorPro/libs/smali-2.2.0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smali-2.2.0.jar
--------------------------------------------------------------------------------
/apkEditorPro/libs/smali-2.2.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smali-2.2.3.jar
--------------------------------------------------------------------------------
/apkEditorPro/libs/smali-2.2.5.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smali-2.2.5.jar
--------------------------------------------------------------------------------
/apkEditorPro/libs/smali-2.4.0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smali-2.4.0.jar
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$DFA30.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$DFA30.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$DFA38.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$DFA38.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$DFA40.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$DFA40.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$access_list_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$access_list_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$annotation_element_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$annotation_element_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$annotation_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$annotation_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$array_descriptor_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$array_descriptor_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$array_literal_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$array_literal_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$catch_directive_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$catch_directive_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$catchall_directive_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$catchall_directive_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$class_spec_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$class_spec_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$debug_directive_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$debug_directive_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$double_literal_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$double_literal_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$end_local_directive_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$end_local_directive_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$enum_literal_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$enum_literal_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$epilogue_directive_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$epilogue_directive_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$field_reference_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$field_reference_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$field_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$field_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$fixed_32bit_literal_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$fixed_32bit_literal_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$fixed_literal_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$fixed_literal_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$float_literal_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$float_literal_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$implements_spec_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$implements_spec_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_array_data_directive_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_array_data_directive_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format10t_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format10t_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format10x_odex_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format10x_odex_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format10x_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format10x_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format11n_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format11n_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format11x_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format11x_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format12x_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format12x_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format20bc_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format20bc_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format20t_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format20t_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format21c_field_odex_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format21c_field_odex_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format21c_field_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format21c_field_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format21c_string_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format21c_string_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format21c_type_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format21c_type_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format21ih_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format21ih_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format21lh_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format21lh_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format21s_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format21s_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format21t_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format21t_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format22b_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format22b_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format22c_field_odex_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format22c_field_odex_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format22c_field_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format22c_field_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format22c_type_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format22c_type_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format22cs_field_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format22cs_field_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format22s_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format22s_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format22t_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format22t_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format22x_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format22x_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format23x_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format23x_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format30t_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format30t_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format31c_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format31c_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format31i_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format31i_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format31t_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format31t_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format32x_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format32x_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format35c_method_odex_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format35c_method_odex_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format35c_method_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format35c_method_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format35c_type_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format35c_type_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format35mi_method_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format35mi_method_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format35ms_method_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format35ms_method_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format3rc_method_odex_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format3rc_method_odex_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format3rc_method_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format3rc_method_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format3rc_type_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format3rc_type_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format3rmi_method_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format3rmi_method_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format3rms_method_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format3rms_method_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format45cc_method_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format45cc_method_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format4rcc_method_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format4rcc_method_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_format51l_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_format51l_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_packed_switch_directive_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_packed_switch_directive_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$insn_sparse_switch_directive_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$insn_sparse_switch_directive_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$instruction_format12x_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$instruction_format12x_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$instruction_format22s_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$instruction_format22s_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$instruction_format31i_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$instruction_format31i_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$instruction_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$instruction_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$integer_literal_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$integer_literal_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$integral_literal_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$integral_literal_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$label_ref_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$label_ref_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$label_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$label_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$line_directive_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$line_directive_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$literal_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$literal_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$local_directive_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$local_directive_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$member_name_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$member_name_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$method_prototype_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$method_prototype_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$method_reference_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$method_reference_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$method_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$method_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$nonvoid_type_descriptor_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$nonvoid_type_descriptor_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$ordered_method_item_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$ordered_method_item_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$param_list_or_id_primitive_type_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$param_list_or_id_primitive_type_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$param_list_or_id_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$param_list_or_id_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$param_list_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$param_list_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$parameter_directive_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$parameter_directive_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$parsed_integer_literal_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$parsed_integer_literal_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$prologue_directive_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$prologue_directive_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$reference_type_descriptor_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$reference_type_descriptor_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$register_list_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$register_list_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$register_range_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$register_range_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$registers_directive_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$registers_directive_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$restart_local_directive_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$restart_local_directive_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$simple_name_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$simple_name_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$smali_file_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$smali_file_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$smali_file_scope.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$smali_file_scope.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$source_directive_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$source_directive_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$source_spec_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$source_spec_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$statements_and_directives_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$statements_and_directives_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$statements_and_directives_scope.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$statements_and_directives_scope.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$subannotation_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$subannotation_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$super_spec_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$super_spec_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$type_descriptor_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$type_descriptor_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$type_field_method_literal_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$type_field_method_literal_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser$verification_error_reference_return.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser$verification_error_reference_return.class
--------------------------------------------------------------------------------
/apkEditorPro/libs/smaliParser.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/libs/smaliParser.class
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/aapt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/aapt
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/aapt-x86-pie:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/aapt-x86-pie
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/aapt6-arm32:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/aapt6-arm32
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/aapt7.1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/aapt7.1
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/android.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/android.zip
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/arm64-v8a/aapt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/arm64-v8a/aapt
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/arm64-v8a/aapt2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/arm64-v8a/aapt2
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/armeabi-v7a/aapt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/armeabi-v7a/aapt
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/armeabi-v7a/aapt2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/armeabi-v7a/aapt2
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/dummy.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/dummy.9.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/dummy_jpg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/dummy_jpg.jpg
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/dummy_png.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/dummy_png.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/editorkey.pk8:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/editorkey.pk8
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/http.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/http.zip
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/mycp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/mycp
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/patch_app_rename.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/patch_app_rename.zip
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/patch_bypass_sigcheck.old.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/patch_bypass_sigcheck.old.zip
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/patch_bypass_sigcheck.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/patch_bypass_sigcheck.zip
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/patch_data_editor.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/patch_data_editor.zip
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/patch_launcher_toast.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/patch_launcher_toast.zip
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/patch_mem_editor.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/patch_mem_editor.zip
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/patch_my_font.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/patch_my_font.zip
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/patch_new_entrance.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/patch_new_entrance.zip
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/patch_script_example.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/patch_script_example.zip
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/syntax/txt.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/testkey.pk8:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/testkey.pk8
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/x86/aapt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/x86/aapt
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/x86/aapt2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/x86/aapt2
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/x86_64/aapt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/x86_64/aapt
--------------------------------------------------------------------------------
/apkEditorPro/src/main/assets/x86_64/aapt2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/assets/x86_64/aapt2
--------------------------------------------------------------------------------
/apkEditorPro/src/main/java/jadx/api/JavaNode.java:
--------------------------------------------------------------------------------
1 | package jadx.api;
2 |
3 | public interface JavaNode {
4 |
5 | String getName();
6 |
7 | String getFullName();
8 |
9 | JavaClass getDeclaringClass();
10 |
11 | JavaClass getTopParentClass();
12 |
13 | int getDecompiledLine();
14 | }
15 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/java/jadx/core/dex/attributes/IAttribute.java:
--------------------------------------------------------------------------------
1 | package jadx.core.dex.attributes;
2 |
3 | public interface IAttribute {
4 |
5 | AType> getType();
6 |
7 | }
8 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/java/jadx/core/dex/instructions/InvokeType.java:
--------------------------------------------------------------------------------
1 | package jadx.core.dex.instructions;
2 |
3 | public enum InvokeType {
4 | STATIC,
5 | DIRECT,
6 | VIRTUAL,
7 | INTERFACE,
8 | SUPER,
9 | }
10 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/java/jadx/core/dex/instructions/args/Named.java:
--------------------------------------------------------------------------------
1 | package jadx.core.dex.instructions.args;
2 |
3 | public interface Named {
4 |
5 | String getName();
6 |
7 | void setName(String name);
8 | }
9 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/java/jadx/core/dex/instructions/args/VarName.java:
--------------------------------------------------------------------------------
1 | package jadx.core.dex.instructions.args;
2 |
3 | public class VarName {
4 | private String name;
5 |
6 | public String getName() {
7 | return name;
8 | }
9 |
10 | public void setName(String name) {
11 | this.name = name;
12 | }
13 |
14 | @Override
15 | public String toString() {
16 | return name;
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/java/jadx/core/dex/nodes/IBlock.java:
--------------------------------------------------------------------------------
1 | package jadx.core.dex.nodes;
2 |
3 | import java.util.List;
4 |
5 | public interface IBlock extends IContainer {
6 |
7 | List getInstructions();
8 | }
9 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/java/jadx/core/dex/nodes/IBranchRegion.java:
--------------------------------------------------------------------------------
1 | package jadx.core.dex.nodes;
2 |
3 | import java.util.List;
4 |
5 | public interface IBranchRegion extends IRegion {
6 |
7 | /**
8 | * Return list of branches in this region.
9 | * NOTE: Contains 'null' elements for indicate empty branches.
10 | */
11 | List getBranches();
12 |
13 | }
14 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/java/jadx/core/dex/nodes/IContainer.java:
--------------------------------------------------------------------------------
1 | package jadx.core.dex.nodes;
2 |
3 | import jadx.core.dex.attributes.IAttributeNode;
4 |
5 | public interface IContainer extends IAttributeNode {
6 |
7 | /**
8 | * Unique id for use in 'toString()' method
9 | */
10 | String baseString();
11 | }
12 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/java/jadx/core/dex/nodes/ILoadable.java:
--------------------------------------------------------------------------------
1 | package jadx.core.dex.nodes;
2 |
3 | import jadx.core.utils.exceptions.DecodeException;
4 |
5 | public interface ILoadable {
6 |
7 | /**
8 | * On demand loading
9 | *
10 | * @throws DecodeException
11 | */
12 | void load() throws DecodeException;
13 |
14 | /**
15 | * Free resources
16 | */
17 | void unload();
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/java/jadx/core/dex/nodes/IRegion.java:
--------------------------------------------------------------------------------
1 | package jadx.core.dex.nodes;
2 |
3 | import java.util.List;
4 |
5 | public interface IRegion extends IContainer {
6 |
7 | IRegion getParent();
8 |
9 | List getSubBlocks();
10 |
11 | boolean replaceSubBlock(IContainer oldBlock, IContainer newBlock);
12 | }
13 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/java/jadx/core/dex/nodes/ProcessState.java:
--------------------------------------------------------------------------------
1 | package jadx.core.dex.nodes;
2 |
3 | public enum ProcessState {
4 | NOT_LOADED,
5 | STARTED,
6 | PROCESSED,
7 | GENERATED,
8 | UNLOADED
9 | }
10 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/java/jadx/core/dex/regions/loops/LoopType.java:
--------------------------------------------------------------------------------
1 | package jadx.core.dex.regions.loops;
2 |
3 | public abstract class LoopType {
4 | }
5 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/java/jadx/core/dex/visitors/regions/IRegionIterativeVisitor.java:
--------------------------------------------------------------------------------
1 | package jadx.core.dex.visitors.regions;
2 |
3 | import jadx.core.dex.nodes.IRegion;
4 | import jadx.core.dex.nodes.MethodNode;
5 |
6 | public interface IRegionIterativeVisitor {
7 |
8 | /**
9 | * If return 'true' traversal will be restarted.
10 | */
11 | boolean visitRegion(MethodNode mth, IRegion region);
12 |
13 | }
14 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/java/jadx/core/utils/exceptions/JadxOverflowException.java:
--------------------------------------------------------------------------------
1 | package jadx.core.utils.exceptions;
2 |
3 | public class JadxOverflowException extends JadxRuntimeException {
4 |
5 | private static final long serialVersionUID = 2568659798680154204L;
6 |
7 | public JadxOverflowException(String message) {
8 | super(message);
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/jni/Application.mk:
--------------------------------------------------------------------------------
1 | APP_STL := c++_static
2 | APP_ABI := arm64-v8a x86 armeabi-v7a x86_64
3 | APP_PLATFORM := android-16
4 | APP_PIE := $(APP_PIE_REQUIRED)
5 | APP_CXXFLAGS := -DNDK_BUILD -std=gnu++11 -Ijni/include -Ijni -fexceptions -frtti
--------------------------------------------------------------------------------
/apkEditorPro/src/main/jni/libzip/gladman-fcrypt/Makefile.am:
--------------------------------------------------------------------------------
1 | EXTRA_DIST= \
2 | aes.h \
3 | aescrypt.c \
4 | aeskey.c \
5 | aesopt.h \
6 | aestab.c \
7 | fileenc.c \
8 | fileenc.h \
9 | hmac.c \
10 | hmac.h \
11 | pwd2key.c \
12 | pwd2key.h \
13 | sha1.c \
14 | sha1.h
15 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/jni/log.txt:
--------------------------------------------------------------------------------
1 | padSize=7
2 | padSize=7
3 | padSize=9
4 | padSize=6
5 | padSize=6
6 | padSize=3
7 | padSize=2
8 | padded=40
9 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/jni/png_utils.c:
--------------------------------------------------------------------------------
1 | #include
2 |
3 | JNIEXPORT jint JNICALL
4 | Java_com_gmail_heagoo_apkeditor_NdkUtil_todo ( JNIEnv* env,
5 | jobject thiz )
6 | {
7 | return 0;
8 | }
9 |
--------------------------------------------------------------------------------
/apkEditorPro/src/main/jni/transform:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/jni/transform
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/appiconframed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/appiconframed.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/appiconhex1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/appiconhex1.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/appiconhex2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/appiconhex2.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/appiconhex3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/appiconhex3.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/appiconhex4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/appiconhex4.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/appiconhex5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/appiconhex5.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/appiconround_bl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/appiconround_bl.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/appiconround_cy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/appiconround_cy.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/appiconround_gr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/appiconround_gr.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/appiconround_or.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/appiconround_or.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/editorpro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/editorpro.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/editorpro2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/editorpro2.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/hexicon1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/hexicon1.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/hexicon2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/hexicon2.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/hexicon3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/hexicon3.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/hexicon4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/hexicon4.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/drawable/hexicon5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/apkEditorPro/src/main/res/drawable/hexicon5.png
--------------------------------------------------------------------------------
/apkEditorPro/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | APK Editor Pro
5 | Warum sollten Sie die Pro-Version verwenden?
6 | "● Die Werbung wird entfernt.
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/apkLibrary/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/appDataEditor/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/appDataEditor/src/main/java/com/gmail/heagoo/appdm/util/FileRecord.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.appdm.util;
2 |
3 | public class FileRecord {
4 | public String fileName;
5 | public int size;
6 | public boolean isDir;
7 | }
--------------------------------------------------------------------------------
/appDataEditor/src/main/java/com/gmail/heagoo/appdm/util/StringPair.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.appdm.util;
2 |
3 | public class StringPair {
4 |
5 | public String first;
6 | public String second;
7 |
8 | public StringPair(String first, String second) {
9 | this.first = first;
10 | this.second = second;
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/drawable-hdpi/appdm_button.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/appDataEditor/src/main/res/drawable-hdpi/appdm_button.9.png
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/drawable-hdpi/appdm_button_hilight.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/appDataEditor/src/main/res/drawable-hdpi/appdm_button_hilight.9.png
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/drawable/appdm_config.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/appDataEditor/src/main/res/drawable/appdm_config.png
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/drawable/appdm_config_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/appDataEditor/src/main/res/drawable/appdm_config_blue.png
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/drawable/appdm_db.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/appDataEditor/src/main/res/drawable/appdm_db.png
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/drawable/appdm_db_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/appDataEditor/src/main/res/drawable/appdm_db_blue.png
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/drawable/appdm_files.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/appDataEditor/src/main/res/drawable/appdm_files.png
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/drawable/appdm_files_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/appDataEditor/src/main/res/drawable/appdm_files_blue.png
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/drawable/appdm_info.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/appDataEditor/src/main/res/drawable/appdm_info.png
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/drawable/appdm_info_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/appDataEditor/src/main/res/drawable/appdm_info_blue.png
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/drawable/appdm_next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/appDataEditor/src/main/res/drawable/appdm_next.png
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/drawable/appdm_previous.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/appDataEditor/src/main/res/drawable/appdm_previous.png
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/drawable/bg_edittext_focused_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/drawable/bg_edittext_normal_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/drawable/folderutil_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/appDataEditor/src/main/res/drawable/folderutil_file.png
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/drawable/folderutil_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/appDataEditor/src/main/res/drawable/folderutil_folder.png
--------------------------------------------------------------------------------
/appDataEditor/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 5.0dip
4 |
--------------------------------------------------------------------------------
/appListUtil/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/appListUtil/src/main/java/com/gmail/heagoo/applistutil/IAppSearch.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.applistutil;
2 |
3 | import java.util.List;
4 |
5 | public interface IAppSearch {
6 |
7 | public List searchApp();
8 |
9 | public void getIcon(AppInfo appInfo);
10 |
11 | }
12 |
--------------------------------------------------------------------------------
/appListUtil/src/main/java/com/gmail/heagoo/applistutil/IConsumeSearch.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.applistutil;
2 |
3 | import java.util.List;
4 |
5 | public interface IConsumeSearch {
6 |
7 | public void setSearchResult(List appList);
8 |
9 | public void searchEnded();
10 |
11 | }
12 |
--------------------------------------------------------------------------------
/appListUtil/src/main/res/drawable/applistutil_button.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/appListUtil/src/main/res/drawable/applistutil_button.9.png
--------------------------------------------------------------------------------
/appListUtil/src/main/res/drawable/applistutil_button_hilight.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/appListUtil/src/main/res/drawable/applistutil_button_hilight.9.png
--------------------------------------------------------------------------------
/appListUtil/src/main/res/values-zh-rTW/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 搜索
5 | 關閉
6 | 查找
7 | 請輸入關鍵字
8 | 關鍵字不能為空!
9 |
10 |
--------------------------------------------------------------------------------
/appListUtil/src/main/res/values/arrays.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | - By App Name
6 | - By Installation Time
7 |
8 |
9 |
10 | - ByAlpha
11 | - ByInstallTime
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | buildscript {
3 | repositories {
4 | mavenCentral()
5 | google()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:7.4.1'
9 | }
10 | }
11 |
12 | allprojects {
13 | repositories {
14 | mavenCentral()
15 | google()
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/debug.log:
--------------------------------------------------------------------------------
1 | [0318/205024.543:ERROR:registration_protocol_win.cc(56)] CreateFile: The system cannot find the file specified. (0x2)
2 | [0318/211536.230:ERROR:registration_protocol_win.cc(56)] CreateFile: The system cannot find the file specified. (0x2)
3 |
--------------------------------------------------------------------------------
/httpServer/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/httpServer/libs/nanohttpd-2.2.0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/httpServer/libs/nanohttpd-2.2.0.jar
--------------------------------------------------------------------------------
/httpServer/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/httpServer/src/main/java/com/gmail/heagoo/httpserver/LogUtil.java:
--------------------------------------------------------------------------------
1 | package com.gmail.heagoo.httpserver;
2 |
3 | class LogUtil {
4 | public static void d(String tag, String s) {
5 | //Log.d(tag, s);
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/httpServer/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #008577
4 | #00574B
5 | #D81B60
6 |
7 |
--------------------------------------------------------------------------------
/httpServer/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Web Server
3 | Web server started. Please visit:\n%s
4 |
5 |
--------------------------------------------------------------------------------
/imageViewLib/libs/gesture-imageview.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/imageViewLib/libs/gesture-imageview.jar
--------------------------------------------------------------------------------
/imageViewLib/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/imageViewLib/src/main/res/layout/imageviewlib_activity_empty.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/local.properties:
--------------------------------------------------------------------------------
1 | ## This file must *NOT* be checked into Version Control Systems,
2 | # as it contains information specific to your local configuration.
3 | #
4 | # Location of the SDK. This is only used by Gradle.
5 | # For customization when using a Version Control System, please read the
6 | # header note.
7 | #Wed Feb 08 19:50:29 YEKT 2023
8 | sdk.dir=C\:\\Android\\Sdk
9 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':apkLibrary', ':httpServer', ':PngEditor'
2 | include ':_AndroidCommon'
3 | include ':imageViewLib'
4 | include ':apkEditor'
5 | include ':appListUtil'
6 | include ':sqliteUtil'
7 | include ':_AndroidEditor'
8 | include ':appDataEditor'
9 | include ':apkEditorPro'
10 |
--------------------------------------------------------------------------------
/sqliteUtil/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/sqliteUtil/src/main/res/drawable/sql_button.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/sqliteUtil/src/main/res/drawable/sql_button.9.png
--------------------------------------------------------------------------------
/sqliteUtil/src/main/res/drawable/sql_button_hilight.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/sqliteUtil/src/main/res/drawable/sql_button_hilight.9.png
--------------------------------------------------------------------------------
/sqliteUtil/src/main/res/drawable/sql_database_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/sqliteUtil/src/main/res/drawable/sql_database_icon.png
--------------------------------------------------------------------------------
/sqliteUtil/src/main/res/drawable/sql_headerbg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/sqliteUtil/src/main/res/drawable/sql_headerbg.png
--------------------------------------------------------------------------------
/sqliteUtil/src/main/res/drawable/sql_next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/sqliteUtil/src/main/res/drawable/sql_next.png
--------------------------------------------------------------------------------
/sqliteUtil/src/main/res/drawable/sql_previous.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timscriptov/ApkEditor/bddfe5807ce7f03cd59dd568b50853759501adac/sqliteUtil/src/main/res/drawable/sql_previous.png
--------------------------------------------------------------------------------
/sqliteUtil/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 16dp
5 | 16dp
6 |
7 | 5.0dip
8 |
9 |
10 |
--------------------------------------------------------------------------------