├── .classpath ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── README.md ├── bin ├── AndroidManifest.xml ├── Cleaner.apk ├── R.txt ├── classes.dex ├── classes │ ├── android │ │ ├── content │ │ │ └── pm │ │ │ │ ├── IPackageStatsObserver$Stub$Proxy.class │ │ │ │ ├── IPackageStatsObserver$Stub.class │ │ │ │ └── IPackageStatsObserver.class │ │ └── support │ │ │ └── v7 │ │ │ └── appcompat │ │ │ ├── R$anim.class │ │ │ ├── R$attr.class │ │ │ ├── R$bool.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$integer.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$styleable.class │ │ │ └── R.class │ └── com │ │ ├── clear │ │ ├── adapters │ │ │ ├── AdapterCacheApp.class │ │ │ ├── AdapterGridviewMain$Holder.class │ │ │ ├── AdapterGridviewMain.class │ │ │ ├── AdapterHistory$1.class │ │ │ ├── AdapterHistory.class │ │ │ ├── AdapterLlamadasMensajes$1.class │ │ │ ├── AdapterLlamadasMensajes.class │ │ │ ├── ApplicationAdapter$1.class │ │ │ └── ApplicationAdapter.class │ │ ├── helpers │ │ │ ├── EntryItem.class │ │ │ ├── InfoAplicaciones$1.class │ │ │ ├── InfoAplicaciones$2.class │ │ │ ├── InfoAplicaciones.class │ │ │ ├── InfoApp$1.class │ │ │ ├── InfoApp.class │ │ │ ├── InfoCache$1.class │ │ │ ├── InfoCache$2.class │ │ │ ├── InfoCache.class │ │ │ ├── InfoLlamadas.class │ │ │ ├── InfoMensajes.class │ │ │ ├── Item.class │ │ │ └── SectionItem.class │ │ └── mastercleaner │ │ │ ├── AppDeleted.class │ │ │ ├── CacheActivity$1.class │ │ │ ├── CacheActivity$2.class │ │ │ ├── CacheActivity$LiberarCache$1.class │ │ │ ├── CacheActivity$LiberarCache.class │ │ │ ├── CacheActivity.class │ │ │ ├── HistoryActivity$1.class │ │ │ ├── HistoryActivity$2.class │ │ │ ├── HistoryActivity$3.class │ │ │ ├── HistoryActivity$LimpiarDatos$1.class │ │ │ ├── HistoryActivity$LimpiarDatos.class │ │ │ ├── HistoryActivity.class │ │ │ ├── ListAppActivity$1.class │ │ │ ├── ListAppActivity$2.class │ │ │ ├── ListAppActivity$3.class │ │ │ ├── ListAppActivity$4.class │ │ │ ├── ListAppActivity$5.class │ │ │ ├── ListAppActivity.class │ │ │ ├── LlamadasMensajesActivity$1.class │ │ │ ├── LlamadasMensajesActivity$LimpiarDatos$1.class │ │ │ ├── LlamadasMensajesActivity$LimpiarDatos.class │ │ │ ├── LlamadasMensajesActivity.class │ │ │ └── MainActivity.class │ │ └── shauvinoni │ │ └── mastercleaner │ │ ├── BuildConfig.class │ │ ├── R$anim.class │ │ ├── R$attr.class │ │ ├── R$bool.class │ │ ├── R$color.class │ │ ├── R$dimen.class │ │ ├── R$drawable.class │ │ ├── R$id.class │ │ ├── R$integer.class │ │ ├── R$layout.class │ │ ├── R$menu.class │ │ ├── R$string.class │ │ ├── R$style.class │ │ ├── R$styleable.class │ │ └── R.class ├── dexedLibs │ ├── android-support-v4-201cb1fa93b9e20736f8ca272d535da3.jar │ ├── android-support-v7-appcompat-0d3de2a1b96b8f3697813b832a97785e.jar │ └── android-support-v7-appcompat-cd9809ae987783f8f1b83eaeff716749.jar ├── jarlist.cache ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ ├── advanced_icon.png │ │ ├── alerta.png │ │ ├── app_manager_icon.png │ │ ├── background.png │ │ ├── backgroundmain.png │ │ ├── barra.png │ │ ├── bg_actionbar.png │ │ ├── browser.png │ │ ├── cache_icon.png │ │ ├── call_incoming.png │ │ ├── call_missed.png │ │ ├── call_outgoing.png │ │ ├── cellphone.png │ │ ├── clipboard.png │ │ ├── dialog_clean_icon.png │ │ ├── downloads.png │ │ ├── history_icon.png │ │ ├── ic_launcher.png │ │ ├── icic.png │ │ ├── icon_success.png │ │ ├── list_icon_media_files.png │ │ ├── llamadas_mensajes.png │ │ ├── msj_inbox.png │ │ └── msj_sent.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ └── drawable-xxhdpi │ │ └── ic_launcher.png └── resources.ap_ ├── cleanermaster.png ├── gen ├── android │ └── support │ │ └── v7 │ │ └── appcompat │ │ └── R.java └── com │ └── shauvinoni │ └── mastercleaner │ ├── BuildConfig.java │ └── R.java ├── ic_launcher-web.png ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── advanced_icon.png │ ├── alerta.png │ ├── app_manager_icon.png │ ├── background.png │ ├── backgroundmain.png │ ├── barra.png │ ├── bg_actionbar.png │ ├── bgmain.jpg │ ├── boton_main.xml │ ├── boton_verde.xml │ ├── browser.png │ ├── cache_icon.png │ ├── call_incoming.png │ ├── call_missed.png │ ├── call_outgoing.png │ ├── cellphone.png │ ├── clipboard.png │ ├── dialog_clean_icon.png │ ├── downloads.png │ ├── history_icon.png │ ├── ic_launcher.png │ ├── icic.png │ ├── icon_success.png │ ├── item_gridview_main.xml │ ├── list_icon_media_files.png │ ├── llamadas_mensajes.png │ ├── msj_inbox.png │ └── msj_sent.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── layout │ ├── activity_cache.xml │ ├── activity_history.xml │ ├── activity_list_app.xml │ ├── activity_llamadas_mensajes.xml │ ├── activity_main.xml │ ├── divisor.xml │ ├── gridview_main_item.xml │ ├── items_call_msj.xml │ ├── list_app_item.xml │ ├── list_cache_item.xml │ └── list_items_history.xml ├── menu │ ├── cache.xml │ ├── history.xml │ ├── list_app.xml │ ├── llamadas_mensajes.xml │ └── main.xml ├── values-es │ └── strings.xml ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src ├── android └── content │ └── pm │ └── IPackageStatsObserver.java └── com └── clear ├── adapters ├── AdapterCacheApp.java ├── AdapterGridviewMain.java ├── AdapterHistory.java ├── AdapterLlamadasMensajes.java └── ApplicationAdapter.java ├── helpers ├── EntryItem.java ├── InfoAplicaciones.java ├── InfoApp.java ├── InfoCache.java ├── InfoLlamadas.java ├── InfoMensajes.java ├── Item.java └── SectionItem.java └── mastercleaner ├── AppDeleted.java ├── CacheActivity.java ├── HistoryActivity.java ├── ListAppActivity.java ├── LlamadasMensajesActivity.java └── MainActivity.java /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Cleaner 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 34 | 35 | 36 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 68 | 69 | 73 | 74 | 78 | 79 | 80 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Android Cleaner App 2 | 3 | ![Screen](https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/master/cleanermaster.png) 4 | In 2015, this app was created for boosting the speed of Android devices and enhance their performance. 5 | 6 | ## Features: 7 | * Uninstall unwanted apps. 8 | * Delete cache files from apps and browsers as well. 9 | * Get rid of history logs from clipboard and browsers. 10 | * Clean history logs from calls and text messages. 11 | -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 34 | 35 | 36 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 68 | 69 | 73 | 74 | 78 | 79 | 80 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /bin/Cleaner.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/Cleaner.apk -------------------------------------------------------------------------------- /bin/R.txt: -------------------------------------------------------------------------------- 1 | int anim abc_fade_in 0x7f040000 2 | int anim abc_fade_out 0x7f040001 3 | int anim abc_slide_in_bottom 0x7f040002 4 | int anim abc_slide_in_top 0x7f040003 5 | int anim abc_slide_out_bottom 0x7f040004 6 | int anim abc_slide_out_top 0x7f040005 7 | int attr actionBarDivider 0x7f01000b 8 | int attr actionBarItemBackground 0x7f01000c 9 | int attr actionBarSize 0x7f01000a 10 | int attr actionBarSplitStyle 0x7f010008 11 | int attr actionBarStyle 0x7f010007 12 | int attr actionBarTabBarStyle 0x7f010004 13 | int attr actionBarTabStyle 0x7f010003 14 | int attr actionBarTabTextStyle 0x7f010005 15 | int attr actionBarWidgetTheme 0x7f010009 16 | int attr actionButtonStyle 0x7f010012 17 | int attr actionDropDownStyle 0x7f010043 18 | int attr actionLayout 0x7f01004a 19 | int attr actionMenuTextAppearance 0x7f01000d 20 | int attr actionMenuTextColor 0x7f01000e 21 | int attr actionModeBackground 0x7f010038 22 | int attr actionModeCloseButtonStyle 0x7f010037 23 | int attr actionModeCloseDrawable 0x7f01003a 24 | int attr actionModeCopyDrawable 0x7f01003c 25 | int attr actionModeCutDrawable 0x7f01003b 26 | int attr actionModeFindDrawable 0x7f010040 27 | int attr actionModePasteDrawable 0x7f01003d 28 | int attr actionModePopupWindowStyle 0x7f010042 29 | int attr actionModeSelectAllDrawable 0x7f01003e 30 | int attr actionModeShareDrawable 0x7f01003f 31 | int attr actionModeSplitBackground 0x7f010039 32 | int attr actionModeStyle 0x7f010036 33 | int attr actionModeWebSearchDrawable 0x7f010041 34 | int attr actionOverflowButtonStyle 0x7f010006 35 | int attr actionProviderClass 0x7f01004c 36 | int attr actionViewClass 0x7f01004b 37 | int attr activityChooserViewStyle 0x7f010068 38 | int attr background 0x7f01002b 39 | int attr backgroundSplit 0x7f01002d 40 | int attr backgroundStacked 0x7f01002c 41 | int attr buttonBarButtonStyle 0x7f010014 42 | int attr buttonBarStyle 0x7f010013 43 | int attr customNavigationLayout 0x7f01002e 44 | int attr disableChildrenWhenDisabled 0x7f010050 45 | int attr displayOptions 0x7f010024 46 | int attr divider 0x7f01002a 47 | int attr dividerHorizontal 0x7f010017 48 | int attr dividerPadding 0x7f010052 49 | int attr dividerVertical 0x7f010016 50 | int attr dropDownListViewStyle 0x7f01001d 51 | int attr dropdownListPreferredItemHeight 0x7f010044 52 | int attr expandActivityOverflowButtonDrawable 0x7f010067 53 | int attr height 0x7f010022 54 | int attr homeAsUpIndicator 0x7f01000f 55 | int attr homeLayout 0x7f01002f 56 | int attr icon 0x7f010028 57 | int attr iconifiedByDefault 0x7f010056 58 | int attr indeterminateProgressStyle 0x7f010031 59 | int attr initialActivityCount 0x7f010066 60 | int attr isLightTheme 0x7f010055 61 | int attr itemPadding 0x7f010033 62 | int attr listChoiceBackgroundIndicator 0x7f010048 63 | int attr listPopupWindowStyle 0x7f01001e 64 | int attr listPreferredItemHeight 0x7f010018 65 | int attr listPreferredItemHeightLarge 0x7f01001a 66 | int attr listPreferredItemHeightSmall 0x7f010019 67 | int attr listPreferredItemPaddingLeft 0x7f01001b 68 | int attr listPreferredItemPaddingRight 0x7f01001c 69 | int attr logo 0x7f010029 70 | int attr navigationMode 0x7f010023 71 | int attr paddingEnd 0x7f010035 72 | int attr paddingStart 0x7f010034 73 | int attr panelMenuListTheme 0x7f010047 74 | int attr panelMenuListWidth 0x7f010046 75 | int attr popupMenuStyle 0x7f010045 76 | int attr popupPromptView 0x7f01004f 77 | int attr progressBarPadding 0x7f010032 78 | int attr progressBarStyle 0x7f010030 79 | int attr prompt 0x7f01004d 80 | int attr queryHint 0x7f010057 81 | int attr searchDropdownBackground 0x7f010058 82 | int attr searchResultListItemHeight 0x7f010061 83 | int attr searchViewAutoCompleteTextView 0x7f010065 84 | int attr searchViewCloseIcon 0x7f010059 85 | int attr searchViewEditQuery 0x7f01005d 86 | int attr searchViewEditQueryBackground 0x7f01005e 87 | int attr searchViewGoIcon 0x7f01005a 88 | int attr searchViewSearchIcon 0x7f01005b 89 | int attr searchViewTextField 0x7f01005f 90 | int attr searchViewTextFieldRight 0x7f010060 91 | int attr searchViewVoiceIcon 0x7f01005c 92 | int attr selectableItemBackground 0x7f010015 93 | int attr showAsAction 0x7f010049 94 | int attr showDividers 0x7f010051 95 | int attr spinnerDropDownItemStyle 0x7f010054 96 | int attr spinnerMode 0x7f01004e 97 | int attr spinnerStyle 0x7f010053 98 | int attr subtitle 0x7f010025 99 | int attr subtitleTextStyle 0x7f010027 100 | int attr textAllCaps 0x7f010069 101 | int attr textAppearanceLargePopupMenu 0x7f010010 102 | int attr textAppearanceListItem 0x7f01001f 103 | int attr textAppearanceListItemSmall 0x7f010020 104 | int attr textAppearanceSearchResultSubtitle 0x7f010063 105 | int attr textAppearanceSearchResultTitle 0x7f010062 106 | int attr textAppearanceSmallPopupMenu 0x7f010011 107 | int attr textColorSearchUrl 0x7f010064 108 | int attr title 0x7f010021 109 | int attr titleTextStyle 0x7f010026 110 | int attr windowActionBar 0x7f010000 111 | int attr windowActionBarOverlay 0x7f010001 112 | int attr windowSplitActionBar 0x7f010002 113 | int bool abc_action_bar_embed_tabs_pre_jb 0x7f050000 114 | int bool abc_action_bar_expanded_action_views_exclusive 0x7f050001 115 | int bool abc_config_actionMenuItemAllCaps 0x7f050005 116 | int bool abc_config_allowActionMenuItemTextWithIcon 0x7f050004 117 | int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050003 118 | int bool abc_split_action_bar_is_narrow 0x7f050002 119 | int color abc_search_url_text_holo 0x7f060003 120 | int color abc_search_url_text_normal 0x7f060000 121 | int color abc_search_url_text_pressed 0x7f060002 122 | int color abc_search_url_text_selected 0x7f060001 123 | int dimen abc_action_bar_default_height 0x7f070002 124 | int dimen abc_action_bar_icon_vertical_padding 0x7f070003 125 | int dimen abc_action_bar_progress_bar_size 0x7f07000a 126 | int dimen abc_action_bar_stacked_max_height 0x7f070009 127 | int dimen abc_action_bar_stacked_tab_max_width 0x7f070001 128 | int dimen abc_action_bar_subtitle_bottom_margin 0x7f070007 129 | int dimen abc_action_bar_subtitle_text_size 0x7f070005 130 | int dimen abc_action_bar_subtitle_top_margin 0x7f070006 131 | int dimen abc_action_bar_title_text_size 0x7f070004 132 | int dimen abc_action_button_min_width 0x7f070008 133 | int dimen abc_config_prefDialogWidth 0x7f070000 134 | int dimen abc_dropdownitem_icon_width 0x7f070010 135 | int dimen abc_dropdownitem_text_padding_left 0x7f07000e 136 | int dimen abc_dropdownitem_text_padding_right 0x7f07000f 137 | int dimen abc_panel_menu_list_width 0x7f07000b 138 | int dimen abc_search_view_preferred_width 0x7f07000d 139 | int dimen abc_search_view_text_min_width 0x7f07000c 140 | int dimen activity_horizontal_margin 0x7f070011 141 | int dimen activity_vertical_margin 0x7f070012 142 | int drawable abc_ab_bottom_solid_dark_holo 0x7f020000 143 | int drawable abc_ab_bottom_solid_light_holo 0x7f020001 144 | int drawable abc_ab_bottom_transparent_dark_holo 0x7f020002 145 | int drawable abc_ab_bottom_transparent_light_holo 0x7f020003 146 | int drawable abc_ab_share_pack_holo_dark 0x7f020004 147 | int drawable abc_ab_share_pack_holo_light 0x7f020005 148 | int drawable abc_ab_solid_dark_holo 0x7f020006 149 | int drawable abc_ab_solid_light_holo 0x7f020007 150 | int drawable abc_ab_stacked_solid_dark_holo 0x7f020008 151 | int drawable abc_ab_stacked_solid_light_holo 0x7f020009 152 | int drawable abc_ab_stacked_transparent_dark_holo 0x7f02000a 153 | int drawable abc_ab_stacked_transparent_light_holo 0x7f02000b 154 | int drawable abc_ab_transparent_dark_holo 0x7f02000c 155 | int drawable abc_ab_transparent_light_holo 0x7f02000d 156 | int drawable abc_cab_background_bottom_holo_dark 0x7f02000e 157 | int drawable abc_cab_background_bottom_holo_light 0x7f02000f 158 | int drawable abc_cab_background_top_holo_dark 0x7f020010 159 | int drawable abc_cab_background_top_holo_light 0x7f020011 160 | int drawable abc_ic_ab_back_holo_dark 0x7f020012 161 | int drawable abc_ic_ab_back_holo_light 0x7f020013 162 | int drawable abc_ic_cab_done_holo_dark 0x7f020014 163 | int drawable abc_ic_cab_done_holo_light 0x7f020015 164 | int drawable abc_ic_clear 0x7f020016 165 | int drawable abc_ic_clear_disabled 0x7f020017 166 | int drawable abc_ic_clear_holo_light 0x7f020018 167 | int drawable abc_ic_clear_normal 0x7f020019 168 | int drawable abc_ic_clear_search_api_disabled_holo_light 0x7f02001a 169 | int drawable abc_ic_clear_search_api_holo_light 0x7f02001b 170 | int drawable abc_ic_commit_search_api_holo_dark 0x7f02001c 171 | int drawable abc_ic_commit_search_api_holo_light 0x7f02001d 172 | int drawable abc_ic_go 0x7f02001e 173 | int drawable abc_ic_go_search_api_holo_light 0x7f02001f 174 | int drawable abc_ic_menu_moreoverflow_normal_holo_dark 0x7f020020 175 | int drawable abc_ic_menu_moreoverflow_normal_holo_light 0x7f020021 176 | int drawable abc_ic_menu_share_holo_dark 0x7f020022 177 | int drawable abc_ic_menu_share_holo_light 0x7f020023 178 | int drawable abc_ic_search 0x7f020024 179 | int drawable abc_ic_search_api_holo_light 0x7f020025 180 | int drawable abc_ic_voice_search 0x7f020026 181 | int drawable abc_ic_voice_search_api_holo_light 0x7f020027 182 | int drawable abc_item_background_holo_dark 0x7f020028 183 | int drawable abc_item_background_holo_light 0x7f020029 184 | int drawable abc_list_divider_holo_dark 0x7f02002a 185 | int drawable abc_list_divider_holo_light 0x7f02002b 186 | int drawable abc_list_focused_holo 0x7f02002c 187 | int drawable abc_list_longpressed_holo 0x7f02002d 188 | int drawable abc_list_pressed_holo_dark 0x7f02002e 189 | int drawable abc_list_pressed_holo_light 0x7f02002f 190 | int drawable abc_list_selector_background_transition_holo_dark 0x7f020030 191 | int drawable abc_list_selector_background_transition_holo_light 0x7f020031 192 | int drawable abc_list_selector_disabled_holo_dark 0x7f020032 193 | int drawable abc_list_selector_disabled_holo_light 0x7f020033 194 | int drawable abc_list_selector_holo_dark 0x7f020034 195 | int drawable abc_list_selector_holo_light 0x7f020035 196 | int drawable abc_menu_dropdown_panel_holo_dark 0x7f020036 197 | int drawable abc_menu_dropdown_panel_holo_light 0x7f020037 198 | int drawable abc_menu_hardkey_panel_holo_dark 0x7f020038 199 | int drawable abc_menu_hardkey_panel_holo_light 0x7f020039 200 | int drawable abc_search_dropdown_dark 0x7f02003a 201 | int drawable abc_search_dropdown_light 0x7f02003b 202 | int drawable abc_spinner_ab_default_holo_dark 0x7f02003c 203 | int drawable abc_spinner_ab_default_holo_light 0x7f02003d 204 | int drawable abc_spinner_ab_disabled_holo_dark 0x7f02003e 205 | int drawable abc_spinner_ab_disabled_holo_light 0x7f02003f 206 | int drawable abc_spinner_ab_focused_holo_dark 0x7f020040 207 | int drawable abc_spinner_ab_focused_holo_light 0x7f020041 208 | int drawable abc_spinner_ab_holo_dark 0x7f020042 209 | int drawable abc_spinner_ab_holo_light 0x7f020043 210 | int drawable abc_spinner_ab_pressed_holo_dark 0x7f020044 211 | int drawable abc_spinner_ab_pressed_holo_light 0x7f020045 212 | int drawable abc_tab_indicator_ab_holo 0x7f020046 213 | int drawable abc_tab_selected_focused_holo 0x7f020047 214 | int drawable abc_tab_selected_holo 0x7f020048 215 | int drawable abc_tab_selected_pressed_holo 0x7f020049 216 | int drawable abc_tab_unselected_pressed_holo 0x7f02004a 217 | int drawable abc_textfield_search_default_holo_dark 0x7f02004b 218 | int drawable abc_textfield_search_default_holo_light 0x7f02004c 219 | int drawable abc_textfield_search_right_default_holo_dark 0x7f02004d 220 | int drawable abc_textfield_search_right_default_holo_light 0x7f02004e 221 | int drawable abc_textfield_search_right_selected_holo_dark 0x7f02004f 222 | int drawable abc_textfield_search_right_selected_holo_light 0x7f020050 223 | int drawable abc_textfield_search_selected_holo_dark 0x7f020051 224 | int drawable abc_textfield_search_selected_holo_light 0x7f020052 225 | int drawable abc_textfield_searchview_holo_dark 0x7f020053 226 | int drawable abc_textfield_searchview_holo_light 0x7f020054 227 | int drawable abc_textfield_searchview_right_holo_dark 0x7f020055 228 | int drawable abc_textfield_searchview_right_holo_light 0x7f020056 229 | int drawable advanced_icon 0x7f020057 230 | int drawable alerta 0x7f020058 231 | int drawable app_manager_icon 0x7f020059 232 | int drawable background 0x7f02005a 233 | int drawable backgroundmain 0x7f02005b 234 | int drawable barra 0x7f02005c 235 | int drawable bg_actionbar 0x7f02005d 236 | int drawable bgmain 0x7f02005e 237 | int drawable boton_main 0x7f02005f 238 | int drawable boton_verde 0x7f020060 239 | int drawable browser 0x7f020061 240 | int drawable cache_icon 0x7f020062 241 | int drawable call_incoming 0x7f020063 242 | int drawable call_missed 0x7f020064 243 | int drawable call_outgoing 0x7f020065 244 | int drawable cellphone 0x7f020066 245 | int drawable clipboard 0x7f020067 246 | int drawable dialog_clean_icon 0x7f020068 247 | int drawable downloads 0x7f020069 248 | int drawable history_icon 0x7f02006a 249 | int drawable ic_launcher 0x7f02006b 250 | int drawable icic 0x7f02006c 251 | int drawable icon_success 0x7f02006d 252 | int drawable item_gridview_main 0x7f02006e 253 | int drawable list_icon_media_files 0x7f02006f 254 | int drawable llamadas_mensajes 0x7f020070 255 | int drawable msj_inbox 0x7f020071 256 | int drawable msj_sent 0x7f020072 257 | int id action_bar 0x7f09001c 258 | int id action_bar_activity_content 0x7f090001 259 | int id action_bar_container 0x7f09001b 260 | int id action_bar_overlay_layout 0x7f09001f 261 | int id action_bar_root 0x7f09001a 262 | int id action_bar_subtitle 0x7f090023 263 | int id action_bar_title 0x7f090022 264 | int id action_context_bar 0x7f09001d 265 | int id action_menu_divider 0x7f090002 266 | int id action_menu_presenter 0x7f090003 267 | int id action_mode_close_button 0x7f090024 268 | int id activity_chooser_view_content 0x7f090025 269 | int id always 0x7f09000f 270 | int id app_icon 0x7f090051 271 | int id app_name 0x7f090052 272 | int id beginning 0x7f090016 273 | int id button1 0x7f090044 274 | int id cache 0x7f090042 275 | int id cantidad 0x7f090040 276 | int id check 0x7f090055 277 | int id checkBox1 0x7f090050 278 | int id checkbox 0x7f09002d 279 | int id collapseActionView 0x7f090010 280 | int id default_activity_button 0x7f090028 281 | int id dialog 0x7f090014 282 | int id disableHome 0x7f090009 283 | int id dropdown 0x7f090015 284 | int id edit_query 0x7f090030 285 | int id end 0x7f090017 286 | int id espaciOcupado 0x7f090054 287 | int id espacio 0x7f09003f 288 | int id expand_activities_button 0x7f090026 289 | int id expanded_menu 0x7f09002c 290 | int id fechaInstalled 0x7f090053 291 | int id gridview 0x7f090048 292 | int id home 0x7f090000 293 | int id homeAsUp 0x7f09000a 294 | int id icon 0x7f09002a 295 | int id ifRoom 0x7f090011 296 | int id image 0x7f090027 297 | int id imageView0 0x7f09004c 298 | int id imagen 0x7f09004b 299 | int id info_size 0x7f090056 300 | int id limpiar 0x7f090046 301 | int id linear_dos 0x7f090043 302 | int id linear_uno 0x7f09003c 303 | int id linearuno 0x7f090047 304 | int id list 0x7f090041 305 | int id listMode 0x7f090006 306 | int id listView_main 0x7f090045 307 | int id list_item 0x7f090029 308 | int id list_item_entry_drawable 0x7f09004d 309 | int id list_item_entry_summary 0x7f09004f 310 | int id list_item_entry_title 0x7f09004e 311 | int id list_item_section_text 0x7f09004a 312 | int id middle 0x7f090018 313 | int id never 0x7f090012 314 | int id none 0x7f090019 315 | int id normal 0x7f090007 316 | int id numeroapp 0x7f09003e 317 | int id progress_circular 0x7f090004 318 | int id progress_horizontal 0x7f090005 319 | int id radio 0x7f09002f 320 | int id search_badge 0x7f090032 321 | int id search_bar 0x7f090031 322 | int id search_button 0x7f090033 323 | int id search_close_btn 0x7f090038 324 | int id search_edit_frame 0x7f090034 325 | int id search_go_btn 0x7f09003a 326 | int id search_mag_icon 0x7f090035 327 | int id search_plate 0x7f090036 328 | int id search_src_text 0x7f090037 329 | int id search_voice_btn 0x7f09003b 330 | int id shortcut 0x7f09002e 331 | int id showCustom 0x7f09000b 332 | int id showHome 0x7f09000c 333 | int id showTitle 0x7f09000d 334 | int id size 0x7f090049 335 | int id split_action_bar 0x7f09001e 336 | int id submit_area 0x7f090039 337 | int id tabMode 0x7f090008 338 | int id texto 0x7f09003d 339 | int id title 0x7f09002b 340 | int id top_action_bar 0x7f090020 341 | int id up 0x7f090021 342 | int id useLogo 0x7f09000e 343 | int id withText 0x7f090013 344 | int integer abc_max_action_buttons 0x7f080000 345 | int layout abc_action_bar_decor 0x7f030000 346 | int layout abc_action_bar_decor_include 0x7f030001 347 | int layout abc_action_bar_decor_overlay 0x7f030002 348 | int layout abc_action_bar_home 0x7f030003 349 | int layout abc_action_bar_tab 0x7f030004 350 | int layout abc_action_bar_tabbar 0x7f030005 351 | int layout abc_action_bar_title_item 0x7f030006 352 | int layout abc_action_bar_view_list_nav_layout 0x7f030007 353 | int layout abc_action_menu_item_layout 0x7f030008 354 | int layout abc_action_menu_layout 0x7f030009 355 | int layout abc_action_mode_bar 0x7f03000a 356 | int layout abc_action_mode_close_item 0x7f03000b 357 | int layout abc_activity_chooser_view 0x7f03000c 358 | int layout abc_activity_chooser_view_include 0x7f03000d 359 | int layout abc_activity_chooser_view_list_item 0x7f03000e 360 | int layout abc_expanded_menu_layout 0x7f03000f 361 | int layout abc_list_menu_item_checkbox 0x7f030010 362 | int layout abc_list_menu_item_icon 0x7f030011 363 | int layout abc_list_menu_item_layout 0x7f030012 364 | int layout abc_list_menu_item_radio 0x7f030013 365 | int layout abc_popup_menu_item_layout 0x7f030014 366 | int layout abc_search_dropdown_item_icons_2line 0x7f030015 367 | int layout abc_search_view 0x7f030016 368 | int layout activity_cache 0x7f030017 369 | int layout activity_history 0x7f030018 370 | int layout activity_list_app 0x7f030019 371 | int layout activity_llamadas_mensajes 0x7f03001a 372 | int layout activity_main 0x7f03001b 373 | int layout divisor 0x7f03001c 374 | int layout gridview_main_item 0x7f03001d 375 | int layout items_call_msj 0x7f03001e 376 | int layout list_app_item 0x7f03001f 377 | int layout list_cache_item 0x7f030020 378 | int layout list_items_history 0x7f030021 379 | int layout support_simple_spinner_dropdown_item 0x7f030022 380 | int menu cache 0x7f0c0000 381 | int menu history 0x7f0c0001 382 | int menu list_app 0x7f0c0002 383 | int menu llamadas_mensajes 0x7f0c0003 384 | int menu main 0x7f0c0004 385 | int string Itcleaned 0x7f0a0024 386 | int string Thereisnot 0x7f0a0022 387 | int string Yourdevice 0x7f0a0023 388 | int string abc_action_bar_home_description 0x7f0a0001 389 | int string abc_action_bar_up_description 0x7f0a0002 390 | int string abc_action_menu_overflow_description 0x7f0a0003 391 | int string abc_action_mode_done 0x7f0a0000 392 | int string abc_activity_chooser_view_see_all 0x7f0a000a 393 | int string abc_activitychooserview_choose_application 0x7f0a0009 394 | int string abc_searchview_description_clear 0x7f0a0006 395 | int string abc_searchview_description_query 0x7f0a0005 396 | int string abc_searchview_description_search 0x7f0a0004 397 | int string abc_searchview_description_submit 0x7f0a0007 398 | int string abc_searchview_description_voice 0x7f0a0008 399 | int string abc_shareactionprovider_share_with 0x7f0a000c 400 | int string abc_shareactionprovider_share_with_application 0x7f0a000b 401 | int string aceptar 0x7f0a0026 402 | int string action_settings 0x7f0a000e 403 | int string aplicacion 0x7f0a003d 404 | int string app 0x7f0a0019 405 | int string app_name 0x7f0a000d 406 | int string appmanager 0x7f0a001f 407 | int string apps 0x7f0a001a 408 | int string botonDesintalar 0x7f0a0011 409 | int string browser 0x7f0a003a 410 | int string cache 0x7f0a001d 411 | int string califica 0x7f0a004e 412 | int string call 0x7f0a001e 413 | int string callandmessage 0x7f0a0027 414 | int string calls 0x7f0a0028 415 | int string cancel 0x7f0a0038 416 | int string cannot 0x7f0a0041 417 | int string cantidad 0x7f0a001c 418 | int string cleaning 0x7f0a0030 419 | int string clearall 0x7f0a0017 420 | int string clipboard 0x7f0a003e 421 | int string deleted 0x7f0a0032 422 | int string doesmedia 0x7f0a003f 423 | int string download 0x7f0a003b 424 | int string espacio 0x7f0a001b 425 | int string excluir 0x7f0a0043 426 | int string files 0x7f0a003c 427 | int string hello_world 0x7f0a000f 428 | int string histories 0x7f0a0020 429 | int string history 0x7f0a0039 430 | int string incluir 0x7f0a0042 431 | int string incomming 0x7f0a0029 432 | int string isc 0x7f0a0048 433 | int string itcleared 0x7f0a0044 434 | int string itclearedclipboard 0x7f0a0045 435 | int string itwillremove 0x7f0a0040 436 | int string limpiar 0x7f0a0013 437 | int string limpiarlogs 0x7f0a0014 438 | int string manager 0x7f0a0035 439 | int string messages 0x7f0a002c 440 | int string missed 0x7f0a002b 441 | int string need 0x7f0a002f 442 | int string needselect 0x7f0a0036 443 | int string nohay 0x7f0a004a 444 | int string nohaycache 0x7f0a0016 445 | int string ofCache 0x7f0a0025 446 | int string ofcalls 0x7f0a0033 447 | int string ofd 0x7f0a0046 448 | int string ofmessages 0x7f0a0034 449 | int string omf 0x7f0a0047 450 | int string outgoing 0x7f0a002a 451 | int string please 0x7f0a004c 452 | int string ratemyapp_accept_button_label 0x7f0a0050 453 | int string ratemyapp_cancel_button_label 0x7f0a0052 454 | int string ratemyapp_later_button_label 0x7f0a0051 455 | int string ratemyappdemo_button_label 0x7f0a004f 456 | int string ratemyappdemo_info_label 0x7f0a004b 457 | int string received 0x7f0a002d 458 | int string removido 0x7f0a0049 459 | int string sent 0x7f0a002e 460 | int string si 0x7f0a004d 461 | int string title_activity_cache 0x7f0a0015 462 | int string title_activity_history 0x7f0a0018 463 | int string title_activity_list_app 0x7f0a0010 464 | int string title_activity_llamadas_mensajes 0x7f0a0012 465 | int string tituloclearcache 0x7f0a0021 466 | int string totallogs 0x7f0a0031 467 | int string uninstall 0x7f0a0037 468 | int style AppBaseTheme 0x7f0b0083 469 | int style AppTheme 0x7f0b0084 470 | int style DialogCustomTheme 0x7f0b0085 471 | int style TextAppearance_AppCompat_Base_CompactMenu_Dialog 0x7f0b0063 472 | int style TextAppearance_AppCompat_Base_SearchResult 0x7f0b006d 473 | int style TextAppearance_AppCompat_Base_SearchResult_Subtitle 0x7f0b006f 474 | int style TextAppearance_AppCompat_Base_SearchResult_Title 0x7f0b006e 475 | int style TextAppearance_AppCompat_Base_Widget_PopupMenu_Large 0x7f0b0069 476 | int style TextAppearance_AppCompat_Base_Widget_PopupMenu_Small 0x7f0b006a 477 | int style TextAppearance_AppCompat_Light_Base_SearchResult 0x7f0b0070 478 | int style TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle 0x7f0b0072 479 | int style TextAppearance_AppCompat_Light_Base_SearchResult_Title 0x7f0b0071 480 | int style TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large 0x7f0b006b 481 | int style TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small 0x7f0b006c 482 | int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0b0035 483 | int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0b0034 484 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b0030 485 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b0031 486 | int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b0033 487 | int style TextAppearance_AppCompat_SearchResult_Title 0x7f0b0032 488 | int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b001a 489 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b0006 490 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b0008 491 | int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b0005 492 | int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b0007 493 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b001e 494 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0b0020 495 | int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b001d 496 | int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0b001f 497 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Menu 0x7f0b0054 498 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle 0x7f0b0056 499 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse 0x7f0b0058 500 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Title 0x7f0b0055 501 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse 0x7f0b0057 502 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle 0x7f0b0051 503 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse 0x7f0b0053 504 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Title 0x7f0b0050 505 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse 0x7f0b0052 506 | int style TextAppearance_AppCompat_Widget_Base_DropDownItem 0x7f0b0061 507 | int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b0021 508 | int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b002e 509 | int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b002f 510 | int style TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item 0x7f0b0062 511 | int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b0028 512 | int style Theme_AppCompat 0x7f0b0077 513 | int style Theme_AppCompat_Base_CompactMenu 0x7f0b0081 514 | int style Theme_AppCompat_Base_CompactMenu_Dialog 0x7f0b0082 515 | int style Theme_AppCompat_CompactMenu 0x7f0b007a 516 | int style Theme_AppCompat_CompactMenu_Dialog 0x7f0b007b 517 | int style Theme_AppCompat_Light 0x7f0b0078 518 | int style Theme_AppCompat_Light_DarkActionBar 0x7f0b0079 519 | int style Theme_Base 0x7f0b007c 520 | int style Theme_Base_AppCompat 0x7f0b007e 521 | int style Theme_Base_AppCompat_Light 0x7f0b007f 522 | int style Theme_Base_AppCompat_Light_DarkActionBar 0x7f0b0080 523 | int style Theme_Base_Light 0x7f0b007d 524 | int style Widget_AppCompat_ActionBar 0x7f0b0000 525 | int style Widget_AppCompat_ActionBar_Solid 0x7f0b0002 526 | int style Widget_AppCompat_ActionBar_TabBar 0x7f0b0011 527 | int style Widget_AppCompat_ActionBar_TabText 0x7f0b0017 528 | int style Widget_AppCompat_ActionBar_TabView 0x7f0b0014 529 | int style Widget_AppCompat_ActionButton 0x7f0b000b 530 | int style Widget_AppCompat_ActionButton_CloseMode 0x7f0b000d 531 | int style Widget_AppCompat_ActionButton_Overflow 0x7f0b000f 532 | int style Widget_AppCompat_ActionMode 0x7f0b001b 533 | int style Widget_AppCompat_ActivityChooserView 0x7f0b0038 534 | int style Widget_AppCompat_AutoCompleteTextView 0x7f0b0036 535 | int style Widget_AppCompat_Base_ActionBar 0x7f0b003a 536 | int style Widget_AppCompat_Base_ActionBar_Solid 0x7f0b003c 537 | int style Widget_AppCompat_Base_ActionBar_TabBar 0x7f0b0045 538 | int style Widget_AppCompat_Base_ActionBar_TabText 0x7f0b004b 539 | int style Widget_AppCompat_Base_ActionBar_TabView 0x7f0b0048 540 | int style Widget_AppCompat_Base_ActionButton 0x7f0b003f 541 | int style Widget_AppCompat_Base_ActionButton_CloseMode 0x7f0b0041 542 | int style Widget_AppCompat_Base_ActionButton_Overflow 0x7f0b0043 543 | int style Widget_AppCompat_Base_ActionMode 0x7f0b004e 544 | int style Widget_AppCompat_Base_ActivityChooserView 0x7f0b0075 545 | int style Widget_AppCompat_Base_AutoCompleteTextView 0x7f0b0073 546 | int style Widget_AppCompat_Base_DropDownItem_Spinner 0x7f0b005d 547 | int style Widget_AppCompat_Base_ListPopupWindow 0x7f0b0065 548 | int style Widget_AppCompat_Base_ListView_DropDown 0x7f0b005f 549 | int style Widget_AppCompat_Base_ListView_Menu 0x7f0b0064 550 | int style Widget_AppCompat_Base_PopupMenu 0x7f0b0067 551 | int style Widget_AppCompat_Base_ProgressBar 0x7f0b005a 552 | int style Widget_AppCompat_Base_ProgressBar_Horizontal 0x7f0b0059 553 | int style Widget_AppCompat_Base_Spinner 0x7f0b005b 554 | int style Widget_AppCompat_DropDownItem_Spinner 0x7f0b0024 555 | int style Widget_AppCompat_Light_ActionBar 0x7f0b0001 556 | int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0003 557 | int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0b0004 558 | int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b0012 559 | int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0b0013 560 | int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0b0018 561 | int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b0019 562 | int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0b0015 563 | int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0b0016 564 | int style Widget_AppCompat_Light_ActionButton 0x7f0b000c 565 | int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0b000e 566 | int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0b0010 567 | int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0b001c 568 | int style Widget_AppCompat_Light_ActivityChooserView 0x7f0b0039 569 | int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0b0037 570 | int style Widget_AppCompat_Light_Base_ActionBar 0x7f0b003b 571 | int style Widget_AppCompat_Light_Base_ActionBar_Solid 0x7f0b003d 572 | int style Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse 0x7f0b003e 573 | int style Widget_AppCompat_Light_Base_ActionBar_TabBar 0x7f0b0046 574 | int style Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse 0x7f0b0047 575 | int style Widget_AppCompat_Light_Base_ActionBar_TabText 0x7f0b004c 576 | int style Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse 0x7f0b004d 577 | int style Widget_AppCompat_Light_Base_ActionBar_TabView 0x7f0b0049 578 | int style Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse 0x7f0b004a 579 | int style Widget_AppCompat_Light_Base_ActionButton 0x7f0b0040 580 | int style Widget_AppCompat_Light_Base_ActionButton_CloseMode 0x7f0b0042 581 | int style Widget_AppCompat_Light_Base_ActionButton_Overflow 0x7f0b0044 582 | int style Widget_AppCompat_Light_Base_ActionMode_Inverse 0x7f0b004f 583 | int style Widget_AppCompat_Light_Base_ActivityChooserView 0x7f0b0076 584 | int style Widget_AppCompat_Light_Base_AutoCompleteTextView 0x7f0b0074 585 | int style Widget_AppCompat_Light_Base_DropDownItem_Spinner 0x7f0b005e 586 | int style Widget_AppCompat_Light_Base_ListPopupWindow 0x7f0b0066 587 | int style Widget_AppCompat_Light_Base_ListView_DropDown 0x7f0b0060 588 | int style Widget_AppCompat_Light_Base_PopupMenu 0x7f0b0068 589 | int style Widget_AppCompat_Light_Base_Spinner 0x7f0b005c 590 | int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0b0025 591 | int style Widget_AppCompat_Light_ListPopupWindow 0x7f0b002a 592 | int style Widget_AppCompat_Light_ListView_DropDown 0x7f0b0027 593 | int style Widget_AppCompat_Light_PopupMenu 0x7f0b002c 594 | int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0b0023 595 | int style Widget_AppCompat_ListPopupWindow 0x7f0b0029 596 | int style Widget_AppCompat_ListView_DropDown 0x7f0b0026 597 | int style Widget_AppCompat_ListView_Menu 0x7f0b002d 598 | int style Widget_AppCompat_PopupMenu 0x7f0b002b 599 | int style Widget_AppCompat_ProgressBar 0x7f0b000a 600 | int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0009 601 | int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b0022 602 | int style button_text 0x7f0b0086 603 | int[] styleable ActionBar { 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033 } 604 | int styleable ActionBar_background 10 605 | int styleable ActionBar_backgroundSplit 12 606 | int styleable ActionBar_backgroundStacked 11 607 | int styleable ActionBar_customNavigationLayout 13 608 | int styleable ActionBar_displayOptions 3 609 | int styleable ActionBar_divider 9 610 | int styleable ActionBar_height 1 611 | int styleable ActionBar_homeLayout 14 612 | int styleable ActionBar_icon 7 613 | int styleable ActionBar_indeterminateProgressStyle 16 614 | int styleable ActionBar_itemPadding 18 615 | int styleable ActionBar_logo 8 616 | int styleable ActionBar_navigationMode 2 617 | int styleable ActionBar_progressBarPadding 17 618 | int styleable ActionBar_progressBarStyle 15 619 | int styleable ActionBar_subtitle 4 620 | int styleable ActionBar_subtitleTextStyle 6 621 | int styleable ActionBar_title 0 622 | int styleable ActionBar_titleTextStyle 5 623 | int[] styleable ActionBarLayout { 0x010100b3 } 624 | int styleable ActionBarLayout_android_layout_gravity 0 625 | int[] styleable ActionBarWindow { 0x7f010000, 0x7f010001, 0x7f010002 } 626 | int styleable ActionBarWindow_windowActionBar 0 627 | int styleable ActionBarWindow_windowActionBarOverlay 1 628 | int styleable ActionBarWindow_windowSplitActionBar 2 629 | int[] styleable ActionMenuItemView { 0x0101013f } 630 | int styleable ActionMenuItemView_android_minWidth 0 631 | int[] styleable ActionMenuView { } 632 | int[] styleable ActionMode { 0x7f010022, 0x7f010026, 0x7f010027, 0x7f01002b, 0x7f01002d } 633 | int styleable ActionMode_background 3 634 | int styleable ActionMode_backgroundSplit 4 635 | int styleable ActionMode_height 0 636 | int styleable ActionMode_subtitleTextStyle 2 637 | int styleable ActionMode_titleTextStyle 1 638 | int[] styleable ActivityChooserView { 0x7f010066, 0x7f010067 } 639 | int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1 640 | int styleable ActivityChooserView_initialActivityCount 0 641 | int[] styleable CompatTextView { 0x7f010069 } 642 | int styleable CompatTextView_textAllCaps 0 643 | int[] styleable LinearLayoutICS { 0x7f01002a, 0x7f010051, 0x7f010052 } 644 | int styleable LinearLayoutICS_divider 0 645 | int styleable LinearLayoutICS_dividerPadding 2 646 | int styleable LinearLayoutICS_showDividers 1 647 | int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } 648 | int styleable MenuGroup_android_checkableBehavior 5 649 | int styleable MenuGroup_android_enabled 0 650 | int styleable MenuGroup_android_id 1 651 | int styleable MenuGroup_android_menuCategory 3 652 | int styleable MenuGroup_android_orderInCategory 4 653 | int styleable MenuGroup_android_visible 2 654 | int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c } 655 | int styleable MenuItem_actionLayout 14 656 | int styleable MenuItem_actionProviderClass 16 657 | int styleable MenuItem_actionViewClass 15 658 | int styleable MenuItem_android_alphabeticShortcut 9 659 | int styleable MenuItem_android_checkable 11 660 | int styleable MenuItem_android_checked 3 661 | int styleable MenuItem_android_enabled 1 662 | int styleable MenuItem_android_icon 0 663 | int styleable MenuItem_android_id 2 664 | int styleable MenuItem_android_menuCategory 5 665 | int styleable MenuItem_android_numericShortcut 10 666 | int styleable MenuItem_android_onClick 12 667 | int styleable MenuItem_android_orderInCategory 6 668 | int styleable MenuItem_android_title 7 669 | int styleable MenuItem_android_titleCondensed 8 670 | int styleable MenuItem_android_visible 4 671 | int styleable MenuItem_showAsAction 13 672 | int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x01010435 } 673 | int styleable MenuView_android_headerBackground 4 674 | int styleable MenuView_android_horizontalDivider 2 675 | int styleable MenuView_android_itemBackground 5 676 | int styleable MenuView_android_itemIconDisabledAlpha 6 677 | int styleable MenuView_android_itemTextAppearance 1 678 | int styleable MenuView_android_preserveIconSpacing 7 679 | int styleable MenuView_android_verticalDivider 3 680 | int styleable MenuView_android_windowAnimationStyle 0 681 | int[] styleable SearchView { 0x0101011f, 0x01010220, 0x01010264, 0x7f010056, 0x7f010057 } 682 | int styleable SearchView_android_imeOptions 2 683 | int styleable SearchView_android_inputType 1 684 | int styleable SearchView_android_maxWidth 0 685 | int styleable SearchView_iconifiedByDefault 3 686 | int styleable SearchView_queryHint 4 687 | int[] styleable Spinner { 0x010100af, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050 } 688 | int styleable Spinner_android_dropDownHorizontalOffset 4 689 | int styleable Spinner_android_dropDownSelector 1 690 | int styleable Spinner_android_dropDownVerticalOffset 5 691 | int styleable Spinner_android_dropDownWidth 3 692 | int styleable Spinner_android_gravity 0 693 | int styleable Spinner_android_popupBackground 2 694 | int styleable Spinner_disableChildrenWhenDisabled 9 695 | int styleable Spinner_popupPromptView 8 696 | int styleable Spinner_prompt 6 697 | int styleable Spinner_spinnerMode 7 698 | int[] styleable Theme { 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048 } 699 | int styleable Theme_actionDropDownStyle 0 700 | int styleable Theme_dropdownListPreferredItemHeight 1 701 | int styleable Theme_listChoiceBackgroundIndicator 5 702 | int styleable Theme_panelMenuListTheme 4 703 | int styleable Theme_panelMenuListWidth 3 704 | int styleable Theme_popupMenuStyle 2 705 | int[] styleable View { 0x010100da, 0x7f010034, 0x7f010035 } 706 | int styleable View_android_focusable 0 707 | int styleable View_paddingEnd 2 708 | int styleable View_paddingStart 1 709 | -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes.dex -------------------------------------------------------------------------------- /bin/classes/android/content/pm/IPackageStatsObserver$Stub$Proxy.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/android/content/pm/IPackageStatsObserver$Stub$Proxy.class -------------------------------------------------------------------------------- /bin/classes/android/content/pm/IPackageStatsObserver$Stub.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/android/content/pm/IPackageStatsObserver$Stub.class -------------------------------------------------------------------------------- /bin/classes/android/content/pm/IPackageStatsObserver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/android/content/pm/IPackageStatsObserver.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /bin/classes/com/clear/adapters/AdapterCacheApp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/adapters/AdapterCacheApp.class -------------------------------------------------------------------------------- /bin/classes/com/clear/adapters/AdapterGridviewMain$Holder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/adapters/AdapterGridviewMain$Holder.class -------------------------------------------------------------------------------- /bin/classes/com/clear/adapters/AdapterGridviewMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/adapters/AdapterGridviewMain.class -------------------------------------------------------------------------------- /bin/classes/com/clear/adapters/AdapterHistory$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/adapters/AdapterHistory$1.class -------------------------------------------------------------------------------- /bin/classes/com/clear/adapters/AdapterHistory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/adapters/AdapterHistory.class -------------------------------------------------------------------------------- /bin/classes/com/clear/adapters/AdapterLlamadasMensajes$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/adapters/AdapterLlamadasMensajes$1.class -------------------------------------------------------------------------------- /bin/classes/com/clear/adapters/AdapterLlamadasMensajes.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/adapters/AdapterLlamadasMensajes.class -------------------------------------------------------------------------------- /bin/classes/com/clear/adapters/ApplicationAdapter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/adapters/ApplicationAdapter$1.class -------------------------------------------------------------------------------- /bin/classes/com/clear/adapters/ApplicationAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/adapters/ApplicationAdapter.class -------------------------------------------------------------------------------- /bin/classes/com/clear/helpers/EntryItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/helpers/EntryItem.class -------------------------------------------------------------------------------- /bin/classes/com/clear/helpers/InfoAplicaciones$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/helpers/InfoAplicaciones$1.class -------------------------------------------------------------------------------- /bin/classes/com/clear/helpers/InfoAplicaciones$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/helpers/InfoAplicaciones$2.class -------------------------------------------------------------------------------- /bin/classes/com/clear/helpers/InfoAplicaciones.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/helpers/InfoAplicaciones.class -------------------------------------------------------------------------------- /bin/classes/com/clear/helpers/InfoApp$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/helpers/InfoApp$1.class -------------------------------------------------------------------------------- /bin/classes/com/clear/helpers/InfoApp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/helpers/InfoApp.class -------------------------------------------------------------------------------- /bin/classes/com/clear/helpers/InfoCache$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/helpers/InfoCache$1.class -------------------------------------------------------------------------------- /bin/classes/com/clear/helpers/InfoCache$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/helpers/InfoCache$2.class -------------------------------------------------------------------------------- /bin/classes/com/clear/helpers/InfoCache.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/helpers/InfoCache.class -------------------------------------------------------------------------------- /bin/classes/com/clear/helpers/InfoLlamadas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/helpers/InfoLlamadas.class -------------------------------------------------------------------------------- /bin/classes/com/clear/helpers/InfoMensajes.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/helpers/InfoMensajes.class -------------------------------------------------------------------------------- /bin/classes/com/clear/helpers/Item.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/helpers/Item.class -------------------------------------------------------------------------------- /bin/classes/com/clear/helpers/SectionItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/helpers/SectionItem.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/AppDeleted.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/AppDeleted.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/CacheActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/CacheActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/CacheActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/CacheActivity$2.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/CacheActivity$LiberarCache$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/CacheActivity$LiberarCache$1.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/CacheActivity$LiberarCache.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/CacheActivity$LiberarCache.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/CacheActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/CacheActivity.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/HistoryActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/HistoryActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/HistoryActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/HistoryActivity$2.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/HistoryActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/HistoryActivity$3.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/HistoryActivity$LimpiarDatos$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/HistoryActivity$LimpiarDatos$1.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/HistoryActivity$LimpiarDatos.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/HistoryActivity$LimpiarDatos.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/HistoryActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/HistoryActivity.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/ListAppActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/ListAppActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/ListAppActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/ListAppActivity$2.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/ListAppActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/ListAppActivity$3.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/ListAppActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/ListAppActivity$4.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/ListAppActivity$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/ListAppActivity$5.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/ListAppActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/ListAppActivity.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/LlamadasMensajesActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/LlamadasMensajesActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/LlamadasMensajesActivity$LimpiarDatos$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/LlamadasMensajesActivity$LimpiarDatos$1.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/LlamadasMensajesActivity$LimpiarDatos.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/LlamadasMensajesActivity$LimpiarDatos.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/LlamadasMensajesActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/LlamadasMensajesActivity.class -------------------------------------------------------------------------------- /bin/classes/com/clear/mastercleaner/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/clear/mastercleaner/MainActivity.class -------------------------------------------------------------------------------- /bin/classes/com/shauvinoni/mastercleaner/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/shauvinoni/mastercleaner/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/shauvinoni/mastercleaner/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/shauvinoni/mastercleaner/R$anim.class -------------------------------------------------------------------------------- /bin/classes/com/shauvinoni/mastercleaner/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/shauvinoni/mastercleaner/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/shauvinoni/mastercleaner/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/shauvinoni/mastercleaner/R$bool.class -------------------------------------------------------------------------------- /bin/classes/com/shauvinoni/mastercleaner/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/shauvinoni/mastercleaner/R$color.class -------------------------------------------------------------------------------- /bin/classes/com/shauvinoni/mastercleaner/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/shauvinoni/mastercleaner/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/com/shauvinoni/mastercleaner/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/shauvinoni/mastercleaner/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/shauvinoni/mastercleaner/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/shauvinoni/mastercleaner/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/shauvinoni/mastercleaner/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/shauvinoni/mastercleaner/R$integer.class -------------------------------------------------------------------------------- /bin/classes/com/shauvinoni/mastercleaner/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/shauvinoni/mastercleaner/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/shauvinoni/mastercleaner/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/shauvinoni/mastercleaner/R$menu.class -------------------------------------------------------------------------------- /bin/classes/com/shauvinoni/mastercleaner/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/shauvinoni/mastercleaner/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/shauvinoni/mastercleaner/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/shauvinoni/mastercleaner/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/shauvinoni/mastercleaner/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/shauvinoni/mastercleaner/R$styleable.class -------------------------------------------------------------------------------- /bin/classes/com/shauvinoni/mastercleaner/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/classes/com/shauvinoni/mastercleaner/R.class -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-201cb1fa93b9e20736f8ca272d535da3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/dexedLibs/android-support-v4-201cb1fa93b9e20736f8ca272d535da3.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v7-appcompat-0d3de2a1b96b8f3697813b832a97785e.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/dexedLibs/android-support-v7-appcompat-0d3de2a1b96b8f3697813b832a97785e.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v7-appcompat-cd9809ae987783f8f1b83eaeff716749.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/dexedLibs/android-support-v7-appcompat-cd9809ae987783f8f1b83eaeff716749.jar -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/advanced_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/advanced_icon.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/alerta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/alerta.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/app_manager_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/app_manager_icon.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/background.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/backgroundmain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/backgroundmain.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/barra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/barra.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/bg_actionbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/bg_actionbar.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/browser.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/cache_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/cache_icon.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/call_incoming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/call_incoming.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/call_missed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/call_missed.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/call_outgoing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/call_outgoing.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/cellphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/cellphone.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/clipboard.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/dialog_clean_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/dialog_clean_icon.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/downloads.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/history_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/history_icon.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/icic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/icic.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/icon_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/icon_success.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/list_icon_media_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/list_icon_media_files.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/llamadas_mensajes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/llamadas_mensajes.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/msj_inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/msj_inbox.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/msj_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-hdpi/msj_sent.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/bin/resources.ap_ -------------------------------------------------------------------------------- /cleanermaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/cleanermaster.png -------------------------------------------------------------------------------- /gen/com/shauvinoni/mastercleaner/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.shauvinoni.mastercleaner; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/ic_launcher-web.png -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | android.library.reference.1=../android-support-v7-appcompat-master 16 | -------------------------------------------------------------------------------- /res/drawable-hdpi/advanced_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/advanced_icon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/alerta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/alerta.png -------------------------------------------------------------------------------- /res/drawable-hdpi/app_manager_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/app_manager_icon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /res/drawable-hdpi/backgroundmain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/backgroundmain.png -------------------------------------------------------------------------------- /res/drawable-hdpi/barra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/barra.png -------------------------------------------------------------------------------- /res/drawable-hdpi/bg_actionbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/bg_actionbar.png -------------------------------------------------------------------------------- /res/drawable-hdpi/bgmain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/bgmain.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/boton_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 10 | 12 | 17 | 18 | 19 | 20 | 21 | 25 | 28 | 30 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /res/drawable-hdpi/boton_verde.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 10 | 12 | 17 | 18 | 19 | 20 | 21 | 25 | 28 | 30 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /res/drawable-hdpi/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/browser.png -------------------------------------------------------------------------------- /res/drawable-hdpi/cache_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/cache_icon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/call_incoming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/call_incoming.png -------------------------------------------------------------------------------- /res/drawable-hdpi/call_missed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/call_missed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/call_outgoing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/call_outgoing.png -------------------------------------------------------------------------------- /res/drawable-hdpi/cellphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/cellphone.png -------------------------------------------------------------------------------- /res/drawable-hdpi/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/clipboard.png -------------------------------------------------------------------------------- /res/drawable-hdpi/dialog_clean_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/dialog_clean_icon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/downloads.png -------------------------------------------------------------------------------- /res/drawable-hdpi/history_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/history_icon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/icic.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/icon_success.png -------------------------------------------------------------------------------- /res/drawable-hdpi/item_gridview_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 10 | 12 | 17 | 18 | 19 | 20 | 21 | 25 | 28 | 30 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /res/drawable-hdpi/list_icon_media_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/list_icon_media_files.png -------------------------------------------------------------------------------- /res/drawable-hdpi/llamadas_mensajes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/llamadas_mensajes.png -------------------------------------------------------------------------------- /res/drawable-hdpi/msj_inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/msj_inbox.png -------------------------------------------------------------------------------- /res/drawable-hdpi/msj_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-hdpi/msj_sent.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReguloSarmiento/AndroidCleaner/2b83c3063354531cdf4c8a10a0a83d4250d55fce/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/activity_cache.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 16 | 17 | 25 | 26 | 35 | 36 | 45 | 46 | 55 | 56 | 57 | 66 | 67 | 76 | 77 | 84 | 85 |