├── .gitignore ├── README.md ├── app.json ├── categories.json ├── gifs ├── apps_open_links │ ├── 0.gif │ ├── 1.gif │ ├── 2.gif │ ├── 3.gif │ └── 4.gif ├── check_analysis │ ├── 0.gif │ ├── 1.gif │ └── 2.gif ├── verify_sha256 │ ├── 0.gif │ ├── 1.gif │ ├── 2.gif │ ├── 3.gif │ ├── 4.gif │ └── 5.gif ├── yt_download │ ├── 0.gif │ ├── 1.gif │ ├── 2.gif │ ├── 3.gif │ └── 4.gif └── yt_skip_ads │ ├── 0.gif │ ├── 1.gif │ └── 2.gif ├── icons ├── 1dm+.png ├── FriendlyForTwitterX.png ├── Snapchat.png ├── adguard.png ├── adobe_lightroom.png ├── app_cloner.png ├── australis.png ├── auto_clicker_macro:_clickmate.png ├── automate.png ├── borealis.png ├── brilliant.png ├── camscanner.png ├── capcut.png ├── duolingo.png ├── enix.png ├── es_file_manager.png ├── facebook.png ├── fitify.png ├── hdo.png ├── inshot.png ├── instagram.png ├── iptv_pro.png ├── kinemaster.png ├── layers_icon_pack.png ├── linebit.png ├── messenger.png ├── microg.png ├── musixmatch.png ├── mx_player.png ├── my_diary.png ├── neverhaveiever.png ├── newpipe.png ├── niagara.png ├── nova_launcher.png ├── nzb360.png ├── onstream.png ├── partypal.png ├── perfect_iptv_player.png ├── photo_editor_pro.png ├── photomath.png ├── photoshop_express.png ├── picolo.png ├── picsart.png ├── rar.png ├── reddit.png ├── revancedmanager.png ├── sd_maid_pro.png ├── sd_maid_se.png ├── seal.png ├── securevpn.png ├── shazam.png ├── showly.png ├── smart6.png ├── snow.png ├── soundcloud.png ├── spotify.png ├── tasker.png ├── telegram.png ├── ticktick.png ├── tiktok.png ├── truecaller.png ├── twitch.png ├── vera.png ├── waze.png ├── wps_office.png ├── x-plore_file_manager.png ├── x.png ├── xodo.png ├── xyvpn.png ├── youtube.png ├── youtube_music.png └── ytdlnis.png ├── index.json └── tips.json /.gitignore: -------------------------------------------------------------------------------- 1 | apps -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # updateMe-Data 2 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.2.2", 3 | "download": "https://github.com/anfreire/updateMe-Mobile/releases/download/v2.2.2/updateMe.apk", 4 | "releaseNotes": [ 5 | { 6 | "title": "App Sugestions Statistics", 7 | "description": "New statistics page to show the number of app suggestions" 8 | }, 9 | { 10 | "title": "New Suggestions and Reports API", 11 | "description": "New API to send suggestions and reports due to high demand" 12 | }, 13 | { 14 | "title": "Bug fixes", 15 | "description": "App version not updating when installed/updates/uninstalled" 16 | } 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /categories.json: -------------------------------------------------------------------------------- 1 | { 2 | "Movies & TV Shows": { 3 | "apps": [ 4 | "HDO", 5 | "OnStream", 6 | "Showly" 7 | ], 8 | "icon": "movie-open-play" 9 | }, 10 | "Music Streaming": { 11 | "apps": [ 12 | "Spotify", 13 | "YouTube Music", 14 | "SoundCloud", 15 | "Shazam", 16 | "Musixmatch" 17 | ], 18 | "icon": "music-box-multiple" 19 | }, 20 | "Video Streaming": { 21 | "apps": [ 22 | "YouTube", 23 | "Twitch" 24 | ], 25 | "icon": "play-box-multiple" 26 | }, 27 | "Social Media": { 28 | "apps": [ 29 | "Instagram", 30 | "TikTok", 31 | "Telegram", 32 | "X", 33 | "Messenger", 34 | "Snapchat", 35 | "Reddit", 36 | "Facebook", 37 | "Friendly For Twitter/X" 38 | ], 39 | "icon": "account-group" 40 | }, 41 | "Photography": { 42 | "apps": [ 43 | "SNOW" 44 | ], 45 | "icon": "camera" 46 | }, 47 | "Photo Editing": { 48 | "apps": [ 49 | "Photo Editor Pro", 50 | "Photoshop Express", 51 | "Picsart", 52 | "Lightroom" 53 | ], 54 | "icon": "image-edit" 55 | }, 56 | "Video Editing": { 57 | "apps": [ 58 | "CapCut", 59 | "InShot", 60 | "KineMaster" 61 | ], 62 | "icon": "movie-edit" 63 | }, 64 | "IPTV": { 65 | "apps": [ 66 | "IPTV Pro", 67 | "Perfect IPTV Player" 68 | ], 69 | "icon": "television-box" 70 | }, 71 | "Media Players": { 72 | "apps": [ 73 | "MX Player" 74 | ], 75 | "icon": "play-circle" 76 | }, 77 | "Media Downloaders": { 78 | "apps": [ 79 | "NewPipe", 80 | "Seal", 81 | "YTDLnis" 82 | ], 83 | "icon": "file-download" 84 | }, 85 | "Download Managers": { 86 | "apps": [ 87 | "1DM+", 88 | "nzb360" 89 | ], 90 | "icon": "download-network" 91 | }, 92 | "Launchers": { 93 | "apps": [ 94 | "Niagara Launcher", 95 | "Smart Launcher 6", 96 | "Nova Launcher" 97 | ], 98 | "icon": "home-edit" 99 | }, 100 | "Icon Packs": { 101 | "apps": [ 102 | "Borealis", 103 | "Layers", 104 | "Australis", 105 | "Vera", 106 | "Linebit", 107 | "ENIX" 108 | ], 109 | "icon": "image-filter-black-white" 110 | }, 111 | "Automation": { 112 | "apps": [ 113 | "Clickmate", 114 | "Tasker", 115 | "Automate" 116 | ], 117 | "icon": "robot-industrial" 118 | }, 119 | "Productivity": { 120 | "apps": [ 121 | "Xodo", 122 | "CamScanner", 123 | "WPS Office", 124 | "My Diary", 125 | "TickTick" 126 | ], 127 | "icon": "briefcase" 128 | }, 129 | "VPN": { 130 | "apps": [ 131 | "Secure VPN", 132 | "XY VPN" 133 | ], 134 | "icon": "shield-key" 135 | }, 136 | "Navigation": { 137 | "apps": [ 138 | "Waze" 139 | ], 140 | "icon": "map-marker" 141 | }, 142 | "Education": { 143 | "apps": [ 144 | "Brilliant", 145 | "Duolingo", 146 | "Photomath" 147 | ], 148 | "icon": "school" 149 | }, 150 | "Health": { 151 | "apps": [ 152 | "Fitify" 153 | ], 154 | "icon": "heart" 155 | }, 156 | "Drinking Games": { 157 | "apps": [ 158 | "Picolo", 159 | "PartyPal", 160 | "Never Have I Ever" 161 | ], 162 | "icon": "beer" 163 | }, 164 | "Utils": { 165 | "apps": [ 166 | "App Cloner", 167 | "AdGuard", 168 | "X-plore File Manager", 169 | "Truecaller", 170 | "SD Maid Pro", 171 | "SD Maid SE", 172 | "ES File Explorer", 173 | "RAR" 174 | ], 175 | "icon": "tools" 176 | }, 177 | "Others": { 178 | "apps": [ 179 | "MicroG", 180 | "ReVanced Manager" 181 | ], 182 | "icon": "shape-plus" 183 | } 184 | } -------------------------------------------------------------------------------- /gifs/apps_open_links/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/apps_open_links/0.gif -------------------------------------------------------------------------------- /gifs/apps_open_links/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/apps_open_links/1.gif -------------------------------------------------------------------------------- /gifs/apps_open_links/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/apps_open_links/2.gif -------------------------------------------------------------------------------- /gifs/apps_open_links/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/apps_open_links/3.gif -------------------------------------------------------------------------------- /gifs/apps_open_links/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/apps_open_links/4.gif -------------------------------------------------------------------------------- /gifs/check_analysis/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/check_analysis/0.gif -------------------------------------------------------------------------------- /gifs/check_analysis/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/check_analysis/1.gif -------------------------------------------------------------------------------- /gifs/check_analysis/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/check_analysis/2.gif -------------------------------------------------------------------------------- /gifs/verify_sha256/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/verify_sha256/0.gif -------------------------------------------------------------------------------- /gifs/verify_sha256/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/verify_sha256/1.gif -------------------------------------------------------------------------------- /gifs/verify_sha256/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/verify_sha256/2.gif -------------------------------------------------------------------------------- /gifs/verify_sha256/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/verify_sha256/3.gif -------------------------------------------------------------------------------- /gifs/verify_sha256/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/verify_sha256/4.gif -------------------------------------------------------------------------------- /gifs/verify_sha256/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/verify_sha256/5.gif -------------------------------------------------------------------------------- /gifs/yt_download/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/yt_download/0.gif -------------------------------------------------------------------------------- /gifs/yt_download/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/yt_download/1.gif -------------------------------------------------------------------------------- /gifs/yt_download/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/yt_download/2.gif -------------------------------------------------------------------------------- /gifs/yt_download/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/yt_download/3.gif -------------------------------------------------------------------------------- /gifs/yt_download/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/yt_download/4.gif -------------------------------------------------------------------------------- /gifs/yt_skip_ads/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/yt_skip_ads/0.gif -------------------------------------------------------------------------------- /gifs/yt_skip_ads/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/yt_skip_ads/1.gif -------------------------------------------------------------------------------- /gifs/yt_skip_ads/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/gifs/yt_skip_ads/2.gif -------------------------------------------------------------------------------- /icons/1dm+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/1dm+.png -------------------------------------------------------------------------------- /icons/FriendlyForTwitterX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/FriendlyForTwitterX.png -------------------------------------------------------------------------------- /icons/Snapchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/Snapchat.png -------------------------------------------------------------------------------- /icons/adguard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/adguard.png -------------------------------------------------------------------------------- /icons/adobe_lightroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/adobe_lightroom.png -------------------------------------------------------------------------------- /icons/app_cloner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/app_cloner.png -------------------------------------------------------------------------------- /icons/australis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/australis.png -------------------------------------------------------------------------------- /icons/auto_clicker_macro:_clickmate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/auto_clicker_macro:_clickmate.png -------------------------------------------------------------------------------- /icons/automate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/automate.png -------------------------------------------------------------------------------- /icons/borealis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/borealis.png -------------------------------------------------------------------------------- /icons/brilliant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/brilliant.png -------------------------------------------------------------------------------- /icons/camscanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/camscanner.png -------------------------------------------------------------------------------- /icons/capcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/capcut.png -------------------------------------------------------------------------------- /icons/duolingo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/duolingo.png -------------------------------------------------------------------------------- /icons/enix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/enix.png -------------------------------------------------------------------------------- /icons/es_file_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/es_file_manager.png -------------------------------------------------------------------------------- /icons/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/facebook.png -------------------------------------------------------------------------------- /icons/fitify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/fitify.png -------------------------------------------------------------------------------- /icons/hdo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/hdo.png -------------------------------------------------------------------------------- /icons/inshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/inshot.png -------------------------------------------------------------------------------- /icons/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/instagram.png -------------------------------------------------------------------------------- /icons/iptv_pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/iptv_pro.png -------------------------------------------------------------------------------- /icons/kinemaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/kinemaster.png -------------------------------------------------------------------------------- /icons/layers_icon_pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/layers_icon_pack.png -------------------------------------------------------------------------------- /icons/linebit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/linebit.png -------------------------------------------------------------------------------- /icons/messenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/messenger.png -------------------------------------------------------------------------------- /icons/microg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/microg.png -------------------------------------------------------------------------------- /icons/musixmatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/musixmatch.png -------------------------------------------------------------------------------- /icons/mx_player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/mx_player.png -------------------------------------------------------------------------------- /icons/my_diary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/my_diary.png -------------------------------------------------------------------------------- /icons/neverhaveiever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/neverhaveiever.png -------------------------------------------------------------------------------- /icons/newpipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/newpipe.png -------------------------------------------------------------------------------- /icons/niagara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/niagara.png -------------------------------------------------------------------------------- /icons/nova_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/nova_launcher.png -------------------------------------------------------------------------------- /icons/nzb360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/nzb360.png -------------------------------------------------------------------------------- /icons/onstream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/onstream.png -------------------------------------------------------------------------------- /icons/partypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/partypal.png -------------------------------------------------------------------------------- /icons/perfect_iptv_player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/perfect_iptv_player.png -------------------------------------------------------------------------------- /icons/photo_editor_pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/photo_editor_pro.png -------------------------------------------------------------------------------- /icons/photomath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/photomath.png -------------------------------------------------------------------------------- /icons/photoshop_express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/photoshop_express.png -------------------------------------------------------------------------------- /icons/picolo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/picolo.png -------------------------------------------------------------------------------- /icons/picsart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/picsart.png -------------------------------------------------------------------------------- /icons/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/rar.png -------------------------------------------------------------------------------- /icons/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/reddit.png -------------------------------------------------------------------------------- /icons/revancedmanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/revancedmanager.png -------------------------------------------------------------------------------- /icons/sd_maid_pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/sd_maid_pro.png -------------------------------------------------------------------------------- /icons/sd_maid_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/sd_maid_se.png -------------------------------------------------------------------------------- /icons/seal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/seal.png -------------------------------------------------------------------------------- /icons/securevpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/securevpn.png -------------------------------------------------------------------------------- /icons/shazam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/shazam.png -------------------------------------------------------------------------------- /icons/showly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/showly.png -------------------------------------------------------------------------------- /icons/smart6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/smart6.png -------------------------------------------------------------------------------- /icons/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/snow.png -------------------------------------------------------------------------------- /icons/soundcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/soundcloud.png -------------------------------------------------------------------------------- /icons/spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/spotify.png -------------------------------------------------------------------------------- /icons/tasker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/tasker.png -------------------------------------------------------------------------------- /icons/telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/telegram.png -------------------------------------------------------------------------------- /icons/ticktick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/ticktick.png -------------------------------------------------------------------------------- /icons/tiktok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/tiktok.png -------------------------------------------------------------------------------- /icons/truecaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/truecaller.png -------------------------------------------------------------------------------- /icons/twitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/twitch.png -------------------------------------------------------------------------------- /icons/vera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/vera.png -------------------------------------------------------------------------------- /icons/waze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/waze.png -------------------------------------------------------------------------------- /icons/wps_office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/wps_office.png -------------------------------------------------------------------------------- /icons/x-plore_file_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/x-plore_file_manager.png -------------------------------------------------------------------------------- /icons/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/x.png -------------------------------------------------------------------------------- /icons/xodo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/xodo.png -------------------------------------------------------------------------------- /icons/xyvpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/xyvpn.png -------------------------------------------------------------------------------- /icons/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/youtube.png -------------------------------------------------------------------------------- /icons/youtube_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/youtube_music.png -------------------------------------------------------------------------------- /icons/ytdlnis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anfreire/updateMe-Data/3f806d606895e8e031375d5b27fc18ab7662cfc9/icons/ytdlnis.png -------------------------------------------------------------------------------- /index.json: -------------------------------------------------------------------------------- 1 | { 2 | "HDO": { 3 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/hdo.png", 4 | "depends": [], 5 | "complements": [], 6 | "features": [ 7 | "Complete movie information including IMDB rating, year of release, and cast", 8 | "Large catalogue of HD movies and TV shows", 9 | "Subtitles support for over 25 languages", 10 | "Trending content from various genres", 11 | "User-friendly interface" 12 | ], 13 | "providers": { 14 | "HDO": { 15 | "source": "https://hdo.app", 16 | "version": "2.1.1", 17 | "packageName": "com.hdobox", 18 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/hdo_hdo.apk", 19 | "safe": true, 20 | "sha256": "bce3708dd8417afad1459870133ac4db071c6c2f3d9b964d0dcbbe679c70617a" 21 | } 22 | } 23 | }, 24 | "YouTube": { 25 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/youtube.png", 26 | "depends": [ 27 | "MicroG" 28 | ], 29 | "complements": [], 30 | "features": [ 31 | "Ad removal", 32 | "Advanced quality options", 33 | "Continuous playback", 34 | "External video downloading", 35 | "Minimized playback", 36 | "Playback of restricted content" 37 | ], 38 | "providers": { 39 | "ReVanced": { 40 | "source": "https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root", 41 | "version": "20.12.46", 42 | "packageName": "app.revanced.android.youtube", 43 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/youtube_revanced.apk", 44 | "safe": true, 45 | "sha256": "98477fb94f81281286582eec04402648c51795154aa8c194ae9491e98891eac3" 46 | }, 47 | "ReVanced Extended": { 48 | "source": "https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root", 49 | "version": "19.47.53", 50 | "packageName": "app.rvx.android.youtube", 51 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/youtube_revancedextended.apk", 52 | "safe": true, 53 | "sha256": "9cc0f152207ca9b243bf62e56e1e10a4bf3858432cb20779d394043d9d5bb606" 54 | }, 55 | "ReVanced (2)": { 56 | "source": "https://github.com/j-hc/revanced-magisk-module", 57 | "version": "20.12.46", 58 | "packageName": "app.revanced.android.youtube", 59 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/youtube_revanced2.apk", 60 | "safe": true, 61 | "sha256": "3d7751ff3ab4fb4ecb941352ec0bca253d25df0b0459cc0f74f4e836f04c8ab8" 62 | }, 63 | "ReVanced Extended (2)": { 64 | "source": "https://github.com/j-hc/revanced-magisk-module", 65 | "version": "19.16.39", 66 | "packageName": "app.rvx.android.youtube", 67 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/youtube_revancedextended2.apk", 68 | "safe": true, 69 | "sha256": "01a248c2cdba89653978f1fd4e294ab683bc6ca5a89d7b384a5b683c6c0f499a" 70 | } 71 | } 72 | }, 73 | "YouTube Music": { 74 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/youtube_music.png", 75 | "depends": [ 76 | "MicroG" 77 | ], 78 | "complements": [], 79 | "features": [ 80 | "Ad-free music player", 81 | "Android Auto support", 82 | "Audio codec options", 83 | "Background playback" 84 | ], 85 | "providers": { 86 | "ReVanced": { 87 | "source": "https://github.com/j-hc/revanced-magisk-module", 88 | "version": "8.05.51", 89 | "packageName": "app.revanced.android.apps.youtube.music", 90 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/youtubemusic_revanced.apk", 91 | "safe": true, 92 | "sha256": "6c2a8c9bf601e871ddc0aed3e4d5086581b646180effec067ce8533f86d435ec" 93 | }, 94 | "ReVanced Extended": { 95 | "source": "https://github.com/j-hc/revanced-magisk-module", 96 | "version": "8.12.53", 97 | "packageName": "app.rvx.android.apps.youtube.music", 98 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/youtubemusic_revancedextended.apk", 99 | "safe": true, 100 | "sha256": "5f68166769d53684ec144d8502fb7725936738b368fe93179739232a0bd1d26d" 101 | }, 102 | "ReVanced (2)": { 103 | "source": "https://github.com/j-hc/revanced-magisk-module", 104 | "version": "8.05.51", 105 | "packageName": "app.revanced.android.apps.youtube.music", 106 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/youtubemusic_revanced2.apk", 107 | "safe": true, 108 | "sha256": "91e8cfe22404e9ebc2c5aa8a222cd5db812bb6caa9a0edada88140a54d5539a2" 109 | }, 110 | "ReVanced Extended (2)": { 111 | "source": "https://github.com/j-hc/revanced-magisk-module", 112 | "version": "7.16.53", 113 | "packageName": "app.rvx.android.apps.youtube.music", 114 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/youtubemusic_revancedextended2.apk", 115 | "safe": true, 116 | "sha256": "2ebc02025e2569832e22e80a13a82f8f9b4df75174bfade2685674935c20e1d7" 117 | } 118 | } 119 | }, 120 | "Reddit": { 121 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/reddit.png", 122 | "depends": [], 123 | "complements": [], 124 | "features": [ 125 | "Ad removal", 126 | "Additional settings", 127 | "Disable screenshot popup", 128 | "Hide navigation bar buttons", 129 | "Hide r/place button", 130 | "Open links in browser", 131 | "Remove tracking query parameters", 132 | "Skip redirection URLs", 133 | "Unlock premium icons" 134 | ], 135 | "providers": { 136 | "ReVanced": { 137 | "source": "https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root", 138 | "version": "2024.17.0", 139 | "packageName": "com.reddit.frontpage", 140 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/reddit_revanced.apk", 141 | "safe": true, 142 | "sha256": "fbb7e0bfc7f35f15e6aa19ebbd30c855c19f39035655aa8403c8c6d14bb4264e" 143 | }, 144 | "ReVanced Extended": { 145 | "source": "https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root", 146 | "version": "2025.12.1", 147 | "packageName": "com.reddit.frontpage", 148 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/reddit_revancedextended.apk", 149 | "safe": true, 150 | "sha256": "09aefd4304ac48818585f80bb810ff9fc4551f2fdc7ed9efaa0ade33dfc34054" 151 | } 152 | } 153 | }, 154 | "Twitch": { 155 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/twitch.png", 156 | "depends": [], 157 | "complements": [], 158 | "features": [ 159 | "Access settings for configuration.", 160 | "Automatically claim Channel Points.", 161 | "Block audio ads for uninterrupted streams.", 162 | "Block embedded stream ads for better viewing.", 163 | "Block video ads for uninterrupted watching.", 164 | "Enable Twitch debugging for troubleshooting.", 165 | "View deleted messages behind spoiler." 166 | ], 167 | "providers": { 168 | "ReVanced": { 169 | "source": "https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root", 170 | "version": "19.1.0", 171 | "packageName": "tv.twitch.android.app", 172 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/twitch_revanced.apk", 173 | "safe": true, 174 | "sha256": "ff52fc80841be52d2582b255d18534825e291fdc926f18fa25a87c9609f56286" 175 | }, 176 | "ReVanced (2)": { 177 | "source": "https://github.com/j-hc/revanced-magisk-module", 178 | "version": "16.9.1", 179 | "packageName": "tv.twitch.android.app", 180 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/twitch_revanced2.apk", 181 | "safe": true, 182 | "sha256": "e62d81068a90b0f3446eb45689ffd89a25a2a06379d7fbd9a3ef7414d1c82aa8" 183 | } 184 | } 185 | }, 186 | "TikTok": { 187 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/tiktok.png", 188 | "depends": [], 189 | "complements": [], 190 | "features": [ 191 | "Adjust playback speed for all videos from 0.25x to 2.0x", 192 | "Customize TikTok video settings", 193 | "Download videos in any quality and change default location", 194 | "Spoof location and carrier information for regional access", 195 | "Use TikTok without logging in", 196 | "Watch TikTok videos without ads" 197 | ], 198 | "providers": { 199 | "ReVanced": { 200 | "source": "https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root", 201 | "version": "36.5.4", 202 | "packageName": "com.zhiliaoapp.musically", 203 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/tiktok_revanced.apk", 204 | "safe": true, 205 | "sha256": "9550cc0c9bab97f0983ba123bd30c46bb1f4f33f218f42fc04202e80b537812a" 206 | }, 207 | "ReVanced (2)": { 208 | "source": "https://github.com/j-hc/revanced-magisk-module", 209 | "version": "36.5.4", 210 | "packageName": "com.zhiliaoapp.musically", 211 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/tiktok_revanced2.apk", 212 | "safe": true, 213 | "sha256": "d84936c433333dd79e820855d5d1e7e1d458a06af01d32ef9650da29fe03d98d" 214 | } 215 | } 216 | }, 217 | "MicroG": { 218 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/microg.png", 219 | "depends": [], 220 | "complements": [], 221 | "features": [ 222 | "Run patched Google apps without root", 223 | "Operate under a different package name using GmsCore", 224 | "Enable GmsCore support for running Google apps", 225 | "Minimize changes necessary to upstream" 226 | ], 227 | "providers": { 228 | "TeamVanced": { 229 | "source": "https://github.com/ReVanced/GmsCore", 230 | "version": "0.3.1.4.240913", 231 | "packageName": "app.revanced.android.gms", 232 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/microg_teamvanced.apk", 233 | "safe": true, 234 | "sha256": "68ea7a4fc95fcb81cb1c1278c11c8da8caba5608ecefb6142461c668282a0545" 235 | } 236 | } 237 | }, 238 | "Spotify": { 239 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/spotify.png", 240 | "depends": [], 241 | "complements": [], 242 | "features": [ 243 | "Unlocked Next Track", 244 | "Unlocked Previous Track", 245 | "Unlocked Seeking FWD/BWD", 246 | "Unlocked/Able to Select Any Songs & Albums", 247 | "Unlocked Repeat All", 248 | "Unlocked Shuffle", 249 | "Disabled Force Shuffle", 250 | "Disabled Audio Ads", 251 | "Disabled Video Ads", 252 | "Disabled Visual Ads", 253 | "Disabled Third-Party Ads" 254 | ], 255 | "providers": { 256 | "xManager": { 257 | "source": "https://www.xmanagerapp.com/", 258 | "version": "9.0.48.380", 259 | "packageName": "com.spotify.music", 260 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/spotify_xmanager.apk", 261 | "safe": true, 262 | "sha256": "a781b0f3908b4d8f63bbbabac91bb40d6e6ffec89e937aafad2ad6017d69105a" 263 | }, 264 | "xManager (Amoled)": { 265 | "source": "https://www.xmanagerapp.com/", 266 | "version": "9.0.48.380", 267 | "packageName": "com.spotify.music", 268 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/spotify_xmanageramoled.apk", 269 | "safe": true, 270 | "sha256": "55dcddc2a8a203619dc393b9ec22865ad5fdc84ca5677961322545ce504da8c2" 271 | }, 272 | "xManager (Lite)": { 273 | "source": "https://www.xmanagerapp.com/", 274 | "version": "1.9.0.72404", 275 | "packageName": "com.spotify.lite", 276 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/spotify_xmanagerlite.apk", 277 | "safe": true, 278 | "sha256": "48b00cf37e66f4b146a1441beb1c19e83bc61ee36b57ab077d83049625a62a49" 279 | }, 280 | "xManager (Cloned)": { 281 | "source": "https://www.xmanagerapp.com/", 282 | "version": "9.0.48.380", 283 | "packageName": "com.spotify.musix", 284 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/spotify_xmanagercloned.apk", 285 | "safe": true, 286 | "sha256": "e4e5fb42d66df951b1729e037976effc3e53b0d1ce4fdd0c435e54dfb7cb632c" 287 | }, 288 | "xManager (Amoled Cloned)": { 289 | "source": "https://www.xmanagerapp.com/", 290 | "version": "9.0.48.380", 291 | "packageName": "com.spotify.musix", 292 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/spotify_xmanageramoledcloned.apk", 293 | "safe": true, 294 | "sha256": "d74fee0da6bbdba8385d67720a7fdbf33489a3c0fa33d104a3a2c09eeac7f206" 295 | }, 296 | "xManager (Experimental)": { 297 | "source": "https://www.xmanagerapp.com/", 298 | "version": "9.0.30.242", 299 | "packageName": "com.spotify.music", 300 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/spotify_xmanagerexperimental.apk", 301 | "safe": true, 302 | "sha256": "fb16942df9a30925bff1fc5a2c46542fde03128f688a63ba7209299f48d9ff6f" 303 | }, 304 | "xManager (Amoled Experimental)": { 305 | "source": "https://www.xmanagerapp.com/", 306 | "version": "9.0.30.242", 307 | "packageName": "com.spotify.music", 308 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/spotify_xmanageramoledexperimental.apk", 309 | "safe": true, 310 | "sha256": "4ce74cec24946a6632da35e13dd973e2669ae0bf1066fde7458f690aeb0a9a8c" 311 | }, 312 | "xManager (Experimental Cloned)": { 313 | "source": "https://www.xmanagerapp.com/", 314 | "version": "9.0.30.242", 315 | "packageName": "com.spotify.musix", 316 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/spotify_xmanagerexperimentalcloned.apk", 317 | "safe": true, 318 | "sha256": "da7b98034206632672ea223cc9645a90bb6f5c4c054c91a38b39058fe852bf19" 319 | }, 320 | "xManager (Amoled Experimental Cloned)": { 321 | "source": "https://www.xmanagerapp.com/", 322 | "version": "9.0.30.242", 323 | "packageName": "com.spotify.musix", 324 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/spotify_xmanageramoledexperimentalcloned.apk", 325 | "safe": true, 326 | "sha256": "7cc0928b7adc9fb76ce4efbc12b5271da17d628aff2941ca5e794140894d088e" 327 | }, 328 | "MODYOLO": { 329 | "source": "https://modyolo.com/spotify-music-2.html", 330 | "version": "9.0.46.496", 331 | "packageName": "spoti.plus", 332 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/spotify_modyolo.apk", 333 | "safe": true, 334 | "sha256": "59c56e90001c08b1a30f34566bc1ae1ca5de92ecc74248314eb06d174e63c166" 335 | }, 336 | "LITEAPKS": { 337 | "source": "https://liteapks.com/spotify-2.html", 338 | "version": "9.0.48.380", 339 | "packageName": "com.spotify.music", 340 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/spotify_liteapks.apk", 341 | "safe": true, 342 | "sha256": "c76ad35d5f637ec35191bb58808e17cde63f71b82c65ad8f7dfc1ab4c481e74c" 343 | }, 344 | "APKDONE": { 345 | "source": "https://apkdone.com/spotify-mod/", 346 | "version": "2.1.2", 347 | "packageName": "com.apkdone.appstore", 348 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/spotify_apkdone.apk", 349 | "safe": false, 350 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 351 | }, 352 | "MODZOCO": { 353 | "source": "https://modzoco.com/spotify-music.html", 354 | "version": "9.0.0.487", 355 | "packageName": "com.spotify.music", 356 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/spotify_modzoco.apk", 357 | "safe": false, 358 | "sha256": "84504cf84825a7c2ecfe9f79253f05cd2697b389698acdedce3806e706865ca0" 359 | } 360 | } 361 | }, 362 | "Photo Editor Pro": { 363 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/photo_editor_pro.png", 364 | "depends": [], 365 | "complements": [], 366 | "features": [ 367 | "Disable Analytics and Ads", 368 | "Unlock Pro Features" 369 | ], 370 | "providers": { 371 | "MODYOLO": { 372 | "source": "https://modyolo.com/polish-photo-editor-pro.html", 373 | "version": "1.643.215", 374 | "packageName": "photo.editor.photoeditor.photoeditorpro", 375 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/photoeditorpro_modyolo.apk", 376 | "safe": false, 377 | "sha256": "fd41e7b08fc7d178a7f7b65d14f75b87cdf26821d3eaa530fa5a978cc0189feb" 378 | }, 379 | "LITEAPKS": { 380 | "source": "https://liteapks.com/polish-photo-editor-pro.html", 381 | "version": "1.65.217", 382 | "packageName": "photo.editor.photoeditor.photoeditorpro", 383 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/photoeditorpro_liteapks.apk", 384 | "safe": false, 385 | "sha256": "9ffd6d064e3cdb49d3c68506d4a51140742c61b6efda9cc226654cbe7ef0f035" 386 | }, 387 | "APKDONE": { 388 | "source": "https://apkdone.com/photo-editor-pro-apk", 389 | "version": "2.1.2", 390 | "packageName": "com.apkdone.appstore", 391 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/photoeditorpro_apkdone.apk", 392 | "safe": false, 393 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 394 | }, 395 | "MODZOCO": { 396 | "source": "https://modzoco.com/photo-editor-pro-polish.html", 397 | "version": "1.603.201", 398 | "packageName": "photo.editor.photoeditor.photoeditorpro", 399 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/photoeditorpro_modzoco.apk", 400 | "safe": false, 401 | "sha256": "6f5a000ce49f922a14148c0dac02975c29d0e534d0265a601f33091d9efe4b4a" 402 | } 403 | } 404 | }, 405 | "Photoshop Express": { 406 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/photoshop_express.png", 407 | "depends": [], 408 | "complements": [], 409 | "features": [ 410 | "Unlock Premium Features", 411 | "Disable Analytics and Ads" 412 | ], 413 | "providers": { 414 | "MODYOLO": { 415 | "source": "https://modyolo.com/photoshop-express-photo-editor.html", 416 | "version": "17.7.8", 417 | "packageName": "com.adobe.psmobile", 418 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/photoshopexpress_modyolo.apk", 419 | "safe": true, 420 | "sha256": "738507f0c18f97aba37af4f3ec16132fc08fe4779c08749977a1de6488f1018d" 421 | }, 422 | "LITEAPKS": { 423 | "source": "https://liteapks.com/photoshop-express-photo-editor.html", 424 | "version": "17.7.8", 425 | "packageName": "com.adobe.psmobile", 426 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/photoshopexpress_liteapks.apk", 427 | "safe": true, 428 | "sha256": "ae55eb3607cdf4d78f26329ab8b4d05bf056da788bce53e5cf3cd890ac8b370d" 429 | }, 430 | "APKDONE": { 431 | "source": "https://apkdone.com/adobe-photoshop-express/", 432 | "version": "2.1.2", 433 | "packageName": "com.apkdone.appstore", 434 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/photoshopexpress_apkdone.apk", 435 | "safe": false, 436 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 437 | }, 438 | "MODZOCO": { 439 | "source": "https://modzoco.com/photoshop-express-photo-editor.html", 440 | "version": "17.1.277", 441 | "packageName": "com.adobe.psmobile", 442 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/photoshopexpress_modzoco.apk", 443 | "safe": false, 444 | "sha256": "4f623893e03b236fe25c76aabee4d80175976acb0bab4e0e1c65cb40b372a725" 445 | } 446 | } 447 | }, 448 | "CapCut": { 449 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/capcut.png", 450 | "depends": [], 451 | "complements": [], 452 | "features": [ 453 | "Disable Analytics and Ads", 454 | "Unlock Pro Features" 455 | ], 456 | "providers": { 457 | "MODYOLO": { 458 | "source": "https://modyolo.com/capcut-video-editor.html", 459 | "version": "14.4.0", 460 | "packageName": "com.lemon.lvoverseas", 461 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/capcut_modyolo.apk", 462 | "safe": false, 463 | "sha256": "57bb75399087f7dfe3ad571535e88bc67c3300154335d9199d86cf41c59b5d14" 464 | }, 465 | "LITEAPKS": { 466 | "source": "https://liteapks.com/capcut-video-editor.html", 467 | "version": "14.4.0", 468 | "packageName": "com.lemon.lvoverseas", 469 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/capcut_liteapks.apk", 470 | "safe": true, 471 | "sha256": "240cdb6aeb5570d62b0453f4bfbf2f7b3a250e82159b72d0d1b24f8a23bc1448" 472 | }, 473 | "APKDONE": { 474 | "source": "https://apkdone.com/capcut-mod-apk/", 475 | "version": "2.1.2", 476 | "packageName": "com.apkdone.appstore", 477 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/capcut_apkdone.apk", 478 | "safe": false, 479 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 480 | }, 481 | "MODZOCO": { 482 | "source": "https://modzoco.com/capcut-video-editor.html", 483 | "version": "13.5.0", 484 | "packageName": "com.lemon.lvoverseas", 485 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/capcut_modzoco.apk", 486 | "safe": false, 487 | "sha256": "4e27831b0775c617fc83b1c9806e14c213451f884907a84f9211750b68af0275" 488 | } 489 | } 490 | }, 491 | "InShot": { 492 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/inshot.png", 493 | "depends": [], 494 | "complements": [], 495 | "features": [ 496 | "Disable Analytics and Ads", 497 | "Unlock Pro Features" 498 | ], 499 | "providers": { 500 | "LITEAPKS": { 501 | "source": "https://liteapks.com/inshot-pro-2.html", 502 | "version": "2.130.1488", 503 | "packageName": "com.camerasideas.instashot", 504 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/inshot_liteapks.apk", 505 | "safe": false, 506 | "sha256": "01ee1e6066bf4c100164f3bf278d46a91f1bef2ae084850a91b214ac274ea407" 507 | }, 508 | "APKDONE": { 509 | "source": "https://apkdone.com/inshot", 510 | "version": "2.1.2", 511 | "packageName": "com.apkdone.appstore", 512 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/inshot_apkdone.apk", 513 | "safe": false, 514 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 515 | }, 516 | "MODYOLO": { 517 | "source": "https://modyolo.com/inshot.html", 518 | "version": "2.130.1488", 519 | "packageName": "com.camerasideas.instashot", 520 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/inshot_modyolo.apk", 521 | "safe": false, 522 | "sha256": "bbf857349e4b7097dd4c202f155391671fcdb5f7b5030ed6c9bbbc7b54688fbc" 523 | }, 524 | "MODZOCO": { 525 | "source": "https://modzoco.com/inshot.html", 526 | "version": "2.093.1474", 527 | "packageName": "com.camerasideas.instashot", 528 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/inshot_modzoco.apk", 529 | "safe": false, 530 | "sha256": "0befdafd9ea7f44157e0919147203ab5ae430ac6afd36d550f61c200c89eb003" 531 | } 532 | } 533 | }, 534 | "Instagram": { 535 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/instagram.png", 536 | "depends": [], 537 | "complements": [], 538 | "features": [ 539 | "Download pictures and videos", 540 | "Hide read receipts", 541 | "Hide typing indicators", 542 | "No ads", 543 | "View stories anonymously" 544 | ], 545 | "providers": { 546 | "MyInsta - Clone": { 547 | "source": "https://myinsta.app", 548 | "version": "364.0.0.35.86", 549 | "packageName": "com.myinsta.android", 550 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/instagram_myinstaclone.apk", 551 | "safe": false, 552 | "sha256": "00fee927920887983e6e7e261b059f08122bfdcfbffd74ca30e7c0a9ed0a54e5" 553 | }, 554 | "MyInsta - Unclone": { 555 | "source": "https://myinsta.app", 556 | "version": "364.0.0.35.86", 557 | "packageName": "com.instagram.android", 558 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/instagram_myinstaunclone.apk", 559 | "safe": false, 560 | "sha256": "e98eb5228b4ae71b7c41dd3b709c6b6dab7bdfc6adb9b379427f785bcaae558c" 561 | }, 562 | "Honinsta": { 563 | "source": "https://honista.com/en/", 564 | "version": "367.0.0.43.90", 565 | "packageName": "cc.honista.app", 566 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/instagram_honinsta.apk", 567 | "safe": true, 568 | "sha256": "1654ee367fceb8138b1512e29b96cb158ee1c9d073c234f47b907f9a50f9d262" 569 | }, 570 | "Instander - Clone": { 571 | "source": "https://thedise.me/instander/", 572 | "version": "263.2.0.19.104", 573 | "packageName": "com.instander.android", 574 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/instagram_instanderclone.apk", 575 | "safe": true, 576 | "sha256": "5a88e6252b04ce54dbc4545b01081860e7c9d3eb6a053b870e327f0329449577" 577 | }, 578 | "Instander - Unclone": { 579 | "source": "https://thedise.me/instander/", 580 | "version": "263.2.0.19.104", 581 | "packageName": "com.instagram.android", 582 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/instagram_instanderunclone.apk", 583 | "safe": true, 584 | "sha256": "4227afabe569ff5f4228f2c063cc1d87c1e783e476b46c7698e526b4080d9374" 585 | } 586 | } 587 | }, 588 | "NewPipe": { 589 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/newpipe.png", 590 | "depends": [], 591 | "complements": [ 592 | "YouTube", 593 | "YouTube Music" 594 | ], 595 | "features": [ 596 | "Download audio in various formats and bitrates", 597 | "Download videos in various formats and resolutions" 598 | ], 599 | "providers": { 600 | "TeamNewPipe": { 601 | "source": "https://github.com/TeamNewPipe/NewPipe", 602 | "version": "0.27.7", 603 | "packageName": "org.schabi.newpipe", 604 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/newpipe_teamnewpipe.apk", 605 | "safe": true, 606 | "sha256": "d59111e2de0732fe6635ac2ecb42c57827ee56897222d2c19afe38a5b2a5eb60" 607 | } 608 | } 609 | }, 610 | "Seal": { 611 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/seal.png", 612 | "depends": [], 613 | "complements": [ 614 | "YouTube", 615 | "YouTube Music" 616 | ], 617 | "features": [ 618 | "Download audio in various formats and bitrates", 619 | "Download videos in various formats and resolutions" 620 | ], 621 | "providers": { 622 | "JunkFood02": { 623 | "source": "https://github.com/JunkFood02/Seal", 624 | "version": "2.0.0-alpha.5", 625 | "packageName": "com.junkfood.seal.preview", 626 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/seal_junkfood02.apk", 627 | "safe": true, 628 | "sha256": "160884a38b48de7534a4ed231097ff21cfc9361a326254cc66319b009f75a871" 629 | } 630 | } 631 | }, 632 | "Niagara Launcher": { 633 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/niagara.png", 634 | "depends": [], 635 | "complements": [], 636 | "features": [ 637 | "Disable Analytics and Ads", 638 | "Unlock Pro Features" 639 | ], 640 | "providers": { 641 | "MODYOLO": { 642 | "source": "https://modyolo.com/niagara-launcher.html", 643 | "version": "1.13.17", 644 | "packageName": "bitpit.launcher", 645 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/niagaralauncher_modyolo.apk", 646 | "safe": false, 647 | "sha256": "cc4259d78aa4c3fb1d24883323a53166fb5567c117c35822ac15c2792abe1b98" 648 | }, 649 | "LITEAPKS": { 650 | "source": "https://liteapks.com/niagara-launcher.html", 651 | "version": "1.13.17", 652 | "packageName": "bitpit.launcher", 653 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/niagaralauncher_liteapks.apk", 654 | "safe": true, 655 | "sha256": "c9b497bf7e0758b5184a4b993025d10880f736a4211473bb1c002b5b64d8d882" 656 | }, 657 | "APKDONE": { 658 | "source": "https://apkdone.com/niagara-launcher/", 659 | "version": "2.1.2", 660 | "packageName": "com.apkdone.appstore", 661 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/niagaralauncher_apkdone.apk", 662 | "safe": false, 663 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 664 | }, 665 | "MODZOCO": { 666 | "source": "https://modzoco.com/niagara-launcher.html", 667 | "version": "1.13.3", 668 | "packageName": "bitpit.launcher", 669 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/niagaralauncher_modzoco.apk", 670 | "safe": true, 671 | "sha256": "e442037cdeb0ba74cb88b28c84e2f147f3ed64d7f1806f0f8251d422ceff5d3c" 672 | } 673 | } 674 | }, 675 | "Smart Launcher 6": { 676 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/smart6.png", 677 | "depends": [], 678 | "complements": [], 679 | "features": [ 680 | "Disable Analytics and Ads", 681 | "Unlock Pro Features" 682 | ], 683 | "providers": { 684 | "MODYOLO": { 685 | "source": "https://modyolo.com/smart-launcher-6.html", 686 | "version": "6.6 build 020", 687 | "packageName": "ginlemon.flowerfree", 688 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/smartlauncher6_modyolo.apk", 689 | "safe": false, 690 | "sha256": "76a698a8a0b4efa5622be97c81c28222b0957bff4ea6a3e2ab98565e58bb01c1" 691 | }, 692 | "LITEAPKS": { 693 | "source": "https://liteapks.com/smart-launcher-6.html", 694 | "version": "6.5 build 032 patch 1", 695 | "packageName": "ginlemon.flowerfree", 696 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/smartlauncher6_liteapks.apk", 697 | "safe": true, 698 | "sha256": "c4f7d201953d74df827699a2a2ce83027d42a6720caf2c36831c716d55fc8684" 699 | }, 700 | "APKDONE": { 701 | "source": "https://apkdone.com/smart-launcher-5/", 702 | "version": "2.1.2", 703 | "packageName": "com.apkdone.appstore", 704 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/smartlauncher6_apkdone.apk", 705 | "safe": false, 706 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 707 | }, 708 | "MODZOCO": { 709 | "source": "https://modzoco.com/smart-launcher-6.html", 710 | "version": "6.5 build 002", 711 | "packageName": "ginlemon.flowerfree", 712 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/smartlauncher6_modzoco.apk", 713 | "safe": true, 714 | "sha256": "a40872651b535f3e5833e712cb4ae7b2cb36c47233d197e557d28d57a2532f45" 715 | } 716 | } 717 | }, 718 | "ReVanced Manager": { 719 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/revancedmanager.png", 720 | "depends": [], 721 | "complements": [], 722 | "features": [ 723 | "Apply any patch of your choice to Android apps", 724 | "ReVanced Patcher that fits in your pocket", 725 | "Quickly understand the ins and outs of ReVanced Manager", 726 | "Configurable API, custom sources, language, signing keystore, theme and more" 727 | ], 728 | "providers": { 729 | "ReVanced": { 730 | "source": "https://github.com/ReVanced/revanced-manager", 731 | "version": "1.25.0-dev.1", 732 | "packageName": "app.revanced.manager.flutter", 733 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/revancedmanager_revanced.apk", 734 | "safe": true, 735 | "sha256": "67a87f0a9dd8fec9a8cedffa45d6c6691649c36d027ad4ef859cecce89998689" 736 | } 737 | } 738 | }, 739 | "YTDLnis": { 740 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/ytdlnis.png", 741 | "depends": [], 742 | "complements": [ 743 | "YouTube", 744 | "YouTube Music" 745 | ], 746 | "features": [ 747 | "Download audio in various formats and bitrates", 748 | "Download videos in various formats and resolutions" 749 | ], 750 | "providers": { 751 | "deniscerr": { 752 | "source": "https://github.com/deniscerri/ytdlnis", 753 | "version": "1.8.4", 754 | "packageName": "com.deniscerri.ytdl", 755 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/ytdlnis_deniscerr.apk", 756 | "safe": true, 757 | "sha256": "678cc93e97af93abd57b3a94a5ee703eb3d000dde2eeccc9b82f77b554eaa196" 758 | } 759 | } 760 | }, 761 | "PartyPal": { 762 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/partypal.png", 763 | "depends": [], 764 | "complements": [], 765 | "features": [ 766 | "Disable Analytics and Ads", 767 | "Unlock Pro Features" 768 | ], 769 | "providers": { 770 | "5Mod": { 771 | "source": "https://5wip-file.ru/download/file/239695.php", 772 | "version": "3.2.1", 773 | "packageName": "com.williamgjeruldsen.partypalandroid", 774 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/partypal_5mod.apk", 775 | "safe": true, 776 | "sha256": "650665dddac47f1baf6a34ff95e15879b5fb37e939e6d350cbaf11a0bd7380cc" 777 | } 778 | } 779 | }, 780 | "Picolo": { 781 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/picolo.png", 782 | "depends": [], 783 | "complements": [], 784 | "features": [ 785 | "Disable Analytics and Ads", 786 | "Unlock Pro Features" 787 | ], 788 | "providers": { 789 | "Android Republic": { 790 | "source": "https://androidrepublic.org/threads/picolo-drinking-game-v3-0-1-mod-apk.104067/", 791 | "version": "2.1.8", 792 | "packageName": "com.picolo.android", 793 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/picolo_androidrepublic.apk", 794 | "safe": true, 795 | "sha256": "aff289f9efa8b11117f48fe197db9b00fd603f76ef0a3307b58c8eabcd0cae57" 796 | } 797 | } 798 | }, 799 | "Never Have I Ever": { 800 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/neverhaveiever.png", 801 | "depends": [], 802 | "complements": [], 803 | "features": [ 804 | "Disable Analytics and Ads", 805 | "Unlock Pro Features" 806 | ], 807 | "providers": { 808 | "LITEAPKS": { 809 | "source": "https://liteapks.com/download/never-have-i-ever-194362", 810 | "version": "8.1.5", 811 | "packageName": "com.nixgames.neverdid", 812 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/neverhaveiever_liteapks.apk", 813 | "safe": true, 814 | "sha256": "54a96528e0712450bfa20659f5d64bbcd6b59ba271999a1068ee7767cd833e18" 815 | } 816 | } 817 | }, 818 | "Borealis": { 819 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/borealis.png", 820 | "depends": [], 821 | "complements": [ 822 | "Niagara Launcher", 823 | "Smart Launcher 6", 824 | "Lawnchair" 825 | ], 826 | "features": [ 827 | "Disable Analytics and Ads", 828 | "Unlock Pro Features" 829 | ], 830 | "providers": { 831 | "MODYOLO": { 832 | "source": "https://modyolo.com/borealis-1.html", 833 | "version": "2.161.0", 834 | "packageName": "com.unvoid.borealis", 835 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/borealis_modyolo.apk", 836 | "safe": false, 837 | "sha256": "a673b2089f9c39cb9400f6d24956aa907c609313f1321ae1a1535bc6a4c396c0" 838 | }, 839 | "LITEAPKS": { 840 | "source": "https://liteapks.com/borealis-icon-pack.html", 841 | "version": "2.173.1", 842 | "packageName": "com.unvoid.borealis", 843 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/borealis_liteapks.apk", 844 | "safe": false, 845 | "sha256": "d6143bda54deea37c7d43da6aa0a163f91427645d69bedda94dfda5210d3638b" 846 | }, 847 | "MODZOCO": { 848 | "source": "https://modzoco.com/borealis-icon-pack.html", 849 | "version": "2.163.0", 850 | "packageName": "com.unvoid.borealis", 851 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/borealis_modzoco.apk", 852 | "safe": false, 853 | "sha256": "4917956d463820c7002f4ef2264e5f5795fffba87c38d77f7d5b6518c92be66c" 854 | } 855 | } 856 | }, 857 | "Layers": { 858 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/layers_icon_pack.png", 859 | "depends": [], 860 | "complements": [ 861 | "Niagara Launcher", 862 | "Smart Launcher 6", 863 | "Lawnchair" 864 | ], 865 | "features": [ 866 | "Disable Analytics and Ads", 867 | "Unlock Pro Features" 868 | ], 869 | "providers": { 870 | "MODYOLO": { 871 | "source": "https://modyolo.com/layers-icon-pack.html", 872 | "version": "10.7", 873 | "packageName": "com.sreerag.layers", 874 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/layers_modyolo.apk", 875 | "safe": false, 876 | "sha256": "c97827db610bd75f66abd169376f27e63759bee90b9860cdcf203575407f2dd6" 877 | }, 878 | "LITEAPKS": { 879 | "source": "https://liteapks.com/layers-glass-icon-pack.html", 880 | "version": "11.4", 881 | "packageName": "com.sreerag.layers", 882 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/layers_liteapks.apk", 883 | "safe": false, 884 | "sha256": "e0ebce3fe0aee5b47252f6d16fc85707629367be80f5fd38cd1b5a6906083f1c" 885 | } 886 | } 887 | }, 888 | "Australis": { 889 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/australis.png", 890 | "depends": [], 891 | "complements": [ 892 | "Niagara Launcher", 893 | "Smart Launcher 6", 894 | "Lawnchair" 895 | ], 896 | "features": [ 897 | "Disable Analytics and Ads", 898 | "Unlock Pro Features" 899 | ], 900 | "providers": { 901 | "MODYOLO": { 902 | "source": "https://modyolo.com/australis-icon-pack.html", 903 | "version": "1.38.0", 904 | "packageName": "com.unvoid.australis", 905 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/australis_modyolo.apk", 906 | "safe": true, 907 | "sha256": "6d901d5782f0523d257f19a6664962823f8ce68eb6c4a4700ad60fd81f818d63" 908 | }, 909 | "LITEAPKS": { 910 | "source": "https://liteapks.com/australis-icon-pack-2.html", 911 | "version": "1.51.0", 912 | "packageName": "com.unvoid.australis", 913 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/australis_liteapks.apk", 914 | "safe": true, 915 | "sha256": "342257ecfb60dd8117e01c2283a4ba7ca476276ff22b68cf33d88e8e1a9652d9" 916 | } 917 | } 918 | }, 919 | "Vera": { 920 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/vera.png", 921 | "depends": [], 922 | "complements": [ 923 | "Niagara Launcher", 924 | "Smart Launcher 6", 925 | "Lawnchair" 926 | ], 927 | "features": [ 928 | "Disable Analytics and Ads", 929 | "Unlock Pro Features" 930 | ], 931 | "providers": { 932 | "MODYOLO": { 933 | "source": "https://modyolo.com/vera-icon-pack.html", 934 | "version": "6.2.2", 935 | "packageName": "cs14.pixelperfect.iconpack.vera", 936 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/vera_modyolo.apk", 937 | "safe": false, 938 | "sha256": "5a73f5537ed1e0be3924168e157720395566c02cca04342ecabcb593a58a3197" 939 | }, 940 | "LITEAPKS": { 941 | "source": "https://liteapks.com/vera-icon-pack.html", 942 | "version": "6.3.3", 943 | "packageName": "cs14.pixelperfect.iconpack.vera", 944 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/vera_liteapks.apk", 945 | "safe": false, 946 | "sha256": "8b8c7d99391203f57cae1322798afbc244e77634d6b8fc858cfee5d04878499c" 947 | }, 948 | "MODZOCO": { 949 | "source": "https://modzoco.com/vera-icon-pack.html", 950 | "version": "6.2.5", 951 | "packageName": "cs14.pixelperfect.iconpack.vera", 952 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/vera_modzoco.apk", 953 | "safe": false, 954 | "sha256": "854d5eb33c5a10d907d43ec3065493d601bcb83722414320e406515379bb4c0d" 955 | } 956 | } 957 | }, 958 | "Linebit": { 959 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/linebit.png", 960 | "depends": [], 961 | "complements": [ 962 | "Niagara Launcher", 963 | "Smart Launcher 6", 964 | "Lawnchair" 965 | ], 966 | "features": [ 967 | "Disable Analytics and Ads", 968 | "Unlock Pro Features" 969 | ], 970 | "providers": { 971 | "MODYOLO": { 972 | "source": "https://modyolo.com/linebit-icon-pack.html", 973 | "version": "2.0.2", 974 | "packageName": "com.edzondm.linebit", 975 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/linebit_modyolo.apk", 976 | "safe": false, 977 | "sha256": "73ea20be1788c488df911a86067723d47e2333f5c2c5d4669ce575cb2bc18cdc" 978 | }, 979 | "LITEAPKS": { 980 | "source": "https://liteapks.com/linebit-icon-pack.html", 981 | "version": "2.0.5", 982 | "packageName": "com.edzondm.linebit", 983 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/linebit_liteapks.apk", 984 | "safe": false, 985 | "sha256": "304c7f0b9a7c7fa1dc827d41177774f99cc69e5a1343371fdb43200469bc48aa" 986 | } 987 | } 988 | }, 989 | "SoundCloud": { 990 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/soundcloud.png", 991 | "depends": [], 992 | "complements": [], 993 | "features": [ 994 | "Premium Unlocked", 995 | "Ad-free music player" 996 | ], 997 | "providers": { 998 | "APKDONE": { 999 | "source": "https://apkdone.com/soundcloud/", 1000 | "version": "2.1.2", 1001 | "packageName": "com.apkdone.appstore", 1002 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/soundcloud_apkdone.apk", 1003 | "safe": false, 1004 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1005 | } 1006 | } 1007 | }, 1008 | "IPTV Pro": { 1009 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/iptv_pro.png", 1010 | "depends": [], 1011 | "complements": [], 1012 | "features": [ 1013 | "Premium Unlocked", 1014 | "Disable Analytics and Ads" 1015 | ], 1016 | "providers": { 1017 | "MODYOLO": { 1018 | "source": "https://modyolo.com/iptv-pro.html", 1019 | "version": "9.0.15", 1020 | "packageName": "ru.iptvremote.android.iptv.pro", 1021 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/iptvpro_modyolo.apk", 1022 | "safe": true, 1023 | "sha256": "dce00a17f5ccfb8753adb9a036dc817eca09bf7dc6053e060afe9055f70c0928" 1024 | }, 1025 | "LITEAPKS": { 1026 | "source": "https://liteapks.com/iptv-pro.html", 1027 | "version": "9.0.15", 1028 | "packageName": "ru.iptvremote.android.iptv.pro", 1029 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/iptvpro_liteapks.apk", 1030 | "safe": true, 1031 | "sha256": "4d6b0c3baacd25f5b7bedc57914ab6bbacded2a3aaa7212065ec0ee8d83eaef0" 1032 | }, 1033 | "MODZOCO": { 1034 | "source": "https://modzoco.com/iptv-pro.html", 1035 | "version": "9.0.1", 1036 | "packageName": "ru.iptvremote.android.iptv.pro", 1037 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/iptvpro_modzoco.apk", 1038 | "safe": true, 1039 | "sha256": "35807c8a231f69ebeee3118929edeb80a5124b9d3a4cad30cdfb68ebc2d03896" 1040 | } 1041 | } 1042 | }, 1043 | "Perfect IPTV Player": { 1044 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/perfect_iptv_player.png", 1045 | "depends": [], 1046 | "complements": [], 1047 | "features": [ 1048 | "Premium Unlocked", 1049 | "Disable Analytics and Ads" 1050 | ], 1051 | "providers": { 1052 | "LITEAPKS": { 1053 | "source": "https://liteapks.com/perfect-iptv-player.html", 1054 | "version": "1.2.1", 1055 | "packageName": "com.leuco.iptv", 1056 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/perfectiptvplayer_liteapks.apk", 1057 | "safe": true, 1058 | "sha256": "ee5562ea9f703faf65bda99d475c13f1b827ca0b93c19959b81e8d8121944e8a" 1059 | } 1060 | } 1061 | }, 1062 | "Automate": { 1063 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/automate.png", 1064 | "depends": [], 1065 | "complements": [], 1066 | "features": [ 1067 | "Premium Unlocked", 1068 | "Disable Analytics and Ads" 1069 | ], 1070 | "providers": { 1071 | "LITEAPKS": { 1072 | "source": "https://liteapks.com/automate.html", 1073 | "version": "1.47.2", 1074 | "packageName": "com.llamalab.automate", 1075 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/automate_liteapks.apk", 1076 | "safe": true, 1077 | "sha256": "f6e11d7f03ab304da1618c0e5a148983e3ccdf9b69e91106ba95c56b501b41eb" 1078 | } 1079 | } 1080 | }, 1081 | "Clickmate": { 1082 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/auto_clicker_macro:_clickmate.png", 1083 | "depends": [], 1084 | "complements": [], 1085 | "features": [ 1086 | "Premium Unlocked", 1087 | "Disable Analytics and Ads" 1088 | ], 1089 | "providers": { 1090 | "MODYOLO": { 1091 | "source": "https://modyolo.com/auto-clicker-macro-clickmate.html", 1092 | "version": "6.1.6", 1093 | "packageName": "com.inscode.autoclicker", 1094 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/clickmate_modyolo.apk", 1095 | "safe": false, 1096 | "sha256": "02e5e4afa9e7a8b1ee19e10fd68d7df4ed56ee5ebb3b48cf4c2bc0cb0bbb28d0" 1097 | }, 1098 | "LITEAPKS": { 1099 | "source": "https://liteapks.com/auto-clicker-macro-clickmate.html", 1100 | "version": "7.1.3", 1101 | "packageName": "com.inscode.autoclicker", 1102 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/clickmate_liteapks.apk", 1103 | "safe": false, 1104 | "sha256": "9a42e4041ced3f1ff82eb16b81fd794a43fc43b8761bfa66a07d28a9671f4eee" 1105 | }, 1106 | "APKDONE": { 1107 | "source": "https://apkdone.com/clickmate/", 1108 | "version": "2.1.2", 1109 | "packageName": "com.apkdone.appstore", 1110 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/clickmate_apkdone.apk", 1111 | "safe": false, 1112 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1113 | } 1114 | } 1115 | }, 1116 | "Tasker": { 1117 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/tasker.png", 1118 | "depends": [], 1119 | "complements": [], 1120 | "features": [ 1121 | "Premium Unlocked", 1122 | "Disable Analytics and Ads" 1123 | ], 1124 | "providers": { 1125 | "LITEAPKS": { 1126 | "source": "https://liteapks.com/tasker.html", 1127 | "version": "6.4.15", 1128 | "packageName": "net.dinglisch.android.taskerm", 1129 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/tasker_liteapks.apk", 1130 | "safe": true, 1131 | "sha256": "42d443e0bdfb34354f42c9b8c0dbfbcd36e0ec4cc4a030ea2a3176d34d262090" 1132 | }, 1133 | "APKDONE": { 1134 | "source": "https://apkdone.com/tasker/", 1135 | "version": "2.1.2", 1136 | "packageName": "com.apkdone.appstore", 1137 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/tasker_apkdone.apk", 1138 | "safe": false, 1139 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1140 | } 1141 | } 1142 | }, 1143 | "Xodo": { 1144 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/xodo.png", 1145 | "depends": [], 1146 | "complements": [], 1147 | "features": [ 1148 | "Premium Unlocked" 1149 | ], 1150 | "providers": { 1151 | "MODYOLO": { 1152 | "source": "https://modyolo.com/xodo-pdf-reader-editor.html", 1153 | "version": "10.1.0", 1154 | "packageName": "com.xodo.pdf.reader", 1155 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/xodo_modyolo.apk", 1156 | "safe": true, 1157 | "sha256": "3f21da3d8c9df380bc3b7bcf5e6e345f7f4569d3e169f7e4a5887b83de473707" 1158 | }, 1159 | "LITEAPKS": { 1160 | "source": "https://liteapks.com/xodo-pdf.html", 1161 | "version": "10.1.0", 1162 | "packageName": "com.xodo.pdf.reader", 1163 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/xodo_liteapks.apk", 1164 | "safe": true, 1165 | "sha256": "6cbc1c950441808d5398bfba423a6d805669d389344728eb31acde442ac11aa1" 1166 | }, 1167 | "APKDONE": { 1168 | "source": "https://liteapks.com/xodo-pdf.html", 1169 | "version": "10.1.0", 1170 | "packageName": "com.xodo.pdf.reader", 1171 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/xodo_apkdone.apk", 1172 | "safe": true, 1173 | "sha256": "59237e53c59bba1468dd9ccbf792545655909fb31434df7d2edf405cc68ffad3" 1174 | } 1175 | } 1176 | }, 1177 | "Brilliant": { 1178 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/brilliant.png", 1179 | "depends": [], 1180 | "complements": [], 1181 | "features": [ 1182 | "Premium Unlocked" 1183 | ], 1184 | "providers": { 1185 | "APKDONE": { 1186 | "source": "https://apkdone.com/brilliant/", 1187 | "version": "2.1.2", 1188 | "packageName": "com.apkdone.appstore", 1189 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/brilliant_apkdone.apk", 1190 | "safe": false, 1191 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1192 | } 1193 | } 1194 | }, 1195 | "Musixmatch": { 1196 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/musixmatch.png", 1197 | "depends": [], 1198 | "complements": [ 1199 | "YouTube", 1200 | "YouTube Music", 1201 | "Spotify" 1202 | ], 1203 | "features": [ 1204 | "Premium Unlocked" 1205 | ], 1206 | "providers": { 1207 | "MODYOLO": { 1208 | "source": "https://modyolo.com/musixmatch.html", 1209 | "version": "7.15.9", 1210 | "packageName": "com.musixmatch.android.lyrify", 1211 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/musixmatch_modyolo.apk", 1212 | "safe": true, 1213 | "sha256": "904b250d274e172a4246c8cbe031fad202a9675a7b1ec5946dae383648839875" 1214 | }, 1215 | "LITEAPKS": { 1216 | "source": "https://liteapks.com/musixmatch.html", 1217 | "version": "7.13.6", 1218 | "packageName": "com.musixmatch.android.lyrify", 1219 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/musixmatch_liteapks.apk", 1220 | "safe": true, 1221 | "sha256": "25b3d375c3b2118073d428618fb933d36e8455fa99e8607e72539ec30e582821" 1222 | }, 1223 | "APKDONE": { 1224 | "source": "https://apkdone.com/musixmatch/", 1225 | "version": "2.1.2", 1226 | "packageName": "com.apkdone.appstore", 1227 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/musixmatch_apkdone.apk", 1228 | "safe": false, 1229 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1230 | }, 1231 | "MODZOCO": { 1232 | "source": "https://modzoco.com/musixmatch-lyrics-finder.html", 1233 | "version": "7.13.6", 1234 | "packageName": "com.musixmatch.android.lyrify", 1235 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/musixmatch_modzoco.apk", 1236 | "safe": true, 1237 | "sha256": "785e43e80dfa1240967836296198455ca0c01f29ba9acfe1cd45241a7086059d" 1238 | } 1239 | } 1240 | }, 1241 | "OnStream": { 1242 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/onstream.png", 1243 | "depends": [], 1244 | "complements": [], 1245 | "features": [ 1246 | "Large catalogue of HD movies and TV shows", 1247 | "Subtitles support for over 25 languages", 1248 | "Trending content from various genres", 1249 | "User-friendly interface" 1250 | ], 1251 | "providers": { 1252 | "OnStream": { 1253 | "source": "https://onstream.so/", 1254 | "version": "1.1.5", 1255 | "packageName": "com.maertsno.m", 1256 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/onstream_onstream.apk", 1257 | "safe": true, 1258 | "sha256": "afdb68ef08519c2b1fd44f1c522869f1177b8f7482157ae1076af50078b083ff" 1259 | } 1260 | } 1261 | }, 1262 | "Telegram": { 1263 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/telegram.png", 1264 | "depends": [], 1265 | "complements": [], 1266 | "features": [ 1267 | "No ads", 1268 | "Proxy and VPN Support", 1269 | "Customization and Additional Options", 1270 | "Internationalization and Translation", 1271 | "Enhanced User Interaction and Messaging Features" 1272 | ], 1273 | "providers": { 1274 | "NekoX": { 1275 | "source": "https://github.com/NekoX-Dev/NekoX", 1276 | "version": "9.5.8", 1277 | "packageName": "nekox.messenger", 1278 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/telegram_nekox.apk", 1279 | "safe": true, 1280 | "sha256": "22badbc3d0659f36d98ce16654638cd7b3754aa09fbd898f69d610fa63a2cbba" 1281 | }, 1282 | "Forkgram": { 1283 | "source": "https://github.com/forkgram/TelegramAndroid", 1284 | "version": "11.9.2.0", 1285 | "packageName": "org.forkclient.messenger.beta", 1286 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/telegram_forkgram.apk", 1287 | "safe": true, 1288 | "sha256": "cda62a3f6d0602df77b2a820a1535719d1b8324bac68fcfea94c11f0e647b2fc" 1289 | } 1290 | } 1291 | }, 1292 | "Showly": { 1293 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/showly.png", 1294 | "depends": [], 1295 | "complements": [ 1296 | "HDO", 1297 | "OnStream" 1298 | ], 1299 | "features": [ 1300 | "Premium Unlocked" 1301 | ], 1302 | "providers": { 1303 | "MODYOLO": { 1304 | "source": "https://modyolo.com/showly.html", 1305 | "version": "3.50.1", 1306 | "packageName": "com.michaldrabik.showly2", 1307 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/showly_modyolo.apk", 1308 | "safe": true, 1309 | "sha256": "9d5b037cfd670f23cd1550415a7be25946e64048a013b73065d31f1856244c00" 1310 | }, 1311 | "LITEAPKS": { 1312 | "source": "https://liteapks.com/showly.html", 1313 | "version": "3.50.1", 1314 | "packageName": "com.michaldrabik.showly2", 1315 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/showly_liteapks.apk", 1316 | "safe": true, 1317 | "sha256": "aef327053c3c8e77389695477c51ae8b470d868101c6ccec8dc8414135b37c4c" 1318 | }, 1319 | "MODZOCO": { 1320 | "source": "https://modzoco.com/showly.html", 1321 | "version": "3.43.0", 1322 | "packageName": "com.michaldrabik.showly2", 1323 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/showly_modzoco.apk", 1324 | "safe": true, 1325 | "sha256": "2e350156fde89c8451b470a8ea14fc66317c8c1156005d634e6d48ba6e49a9c9" 1326 | } 1327 | } 1328 | }, 1329 | "CamScanner": { 1330 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/camscanner.png", 1331 | "depends": [], 1332 | "complements": [], 1333 | "features": [ 1334 | "Premium Unlocked" 1335 | ], 1336 | "providers": { 1337 | "MODYOLO": { 1338 | "source": "https://modyolo.com/camscanner.html", 1339 | "version": "6.88.5.2505220000", 1340 | "packageName": "com.intsig.camscanner", 1341 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/camscanner_modyolo.apk", 1342 | "safe": true, 1343 | "sha256": "b226fcbf182ec241d400b269e3d051e1f698e675e3a16f96d5042ac3a1a12b1d" 1344 | }, 1345 | "LITEAPKS": { 1346 | "source": "https://liteapks.com/camscanner.html", 1347 | "version": "6.89.5.2506060000", 1348 | "packageName": "com.intsig.camscanner", 1349 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/camscanner_liteapks.apk", 1350 | "safe": false, 1351 | "sha256": "b9a660d8a85f62e93ae5989677d63c0fbcd4fc1e19a4ff3000a5261032b59094" 1352 | }, 1353 | "APKDONE": { 1354 | "source": "https://apkdone.com/camscanner/", 1355 | "version": "2.1.2", 1356 | "packageName": "com.apkdone.appstore", 1357 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/camscanner_apkdone.apk", 1358 | "safe": false, 1359 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1360 | }, 1361 | "MODZOCO": { 1362 | "source": "https://modzoco.com/camscanner.html", 1363 | "version": "6.80.0.2501070000", 1364 | "packageName": "com.intsig.camscanner", 1365 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/camscanner_modzoco.apk", 1366 | "safe": true, 1367 | "sha256": "5038f2618622a21be444a4920695202aad350fa2900c62f37891ce73d53ffe0e" 1368 | } 1369 | } 1370 | }, 1371 | "App Cloner": { 1372 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/app_cloner.png", 1373 | "depends": [], 1374 | "complements": [], 1375 | "features": [ 1376 | "Premium Unlocked" 1377 | ], 1378 | "providers": { 1379 | "LITEAPKS": { 1380 | "source": "https://liteapks.com/app-cloner.html", 1381 | "version": "2.18.2", 1382 | "packageName": "com.applisto.appcloner", 1383 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/appcloner_liteapks.apk", 1384 | "safe": true, 1385 | "sha256": "89f60a2ffbbea44a3d683bda5065b69fc2bd649f01f636101e02d9ed42e51070" 1386 | }, 1387 | "APKDONE": { 1388 | "source": "https://apkdone.com/app-cloner-mod-apk/", 1389 | "version": "2.1.2", 1390 | "packageName": "com.apkdone.appstore", 1391 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/appcloner_apkdone.apk", 1392 | "safe": false, 1393 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1394 | } 1395 | } 1396 | }, 1397 | "AdGuard": { 1398 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/adguard.png", 1399 | "depends": [], 1400 | "complements": [], 1401 | "features": [ 1402 | "Premium Unlocked" 1403 | ], 1404 | "providers": { 1405 | "MODYOLO": { 1406 | "source": "https://modyolo.com/adguard.html", 1407 | "version": "4.10.48", 1408 | "packageName": "com.adguard.android", 1409 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/adguard_modyolo.apk", 1410 | "safe": true, 1411 | "sha256": "fedfd7c22e53ef13e5fd02e74f27d6c3d5565d7d18e73f2736dc75541344dc55" 1412 | }, 1413 | "LITEAPKS": { 1414 | "source": "https://liteapks.com/adguard-2.html", 1415 | "version": "4.10.48", 1416 | "packageName": "com.adguard.android", 1417 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/adguard_liteapks.apk", 1418 | "safe": true, 1419 | "sha256": "9ba533c5d6a1a4067ff4cb0d8f2eea036b45c14c96505a39a5d3a778c6f0a604" 1420 | }, 1421 | "APKDONE": { 1422 | "source": "https://apkdone.com/adguard-premium/", 1423 | "version": "2.1.2", 1424 | "packageName": "com.apkdone.appstore", 1425 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/adguard_apkdone.apk", 1426 | "safe": false, 1427 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1428 | }, 1429 | "MODZOCO": { 1430 | "source": "https://modzoco.com/adguard.html", 1431 | "version": "4.8.6", 1432 | "packageName": "com.adguard.android", 1433 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/adguard_modzoco.apk", 1434 | "safe": true, 1435 | "sha256": "8c06c2f29560989eb720bf568f65754c05af09d5a10ff27c61e5cb278068dc44" 1436 | } 1437 | } 1438 | }, 1439 | "Picsart": { 1440 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/picsart.png", 1441 | "depends": [], 1442 | "complements": [], 1443 | "features": [ 1444 | "Premium Unlocked" 1445 | ], 1446 | "providers": { 1447 | "MODYOLO": { 1448 | "source": "https://modyolo.com/picsart-studio-1.html", 1449 | "version": "27.6.4", 1450 | "packageName": "com.picsart.studio", 1451 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/picsart_modyolo.apk", 1452 | "safe": false, 1453 | "sha256": "1a582d12f6b899426d667c7bcf9a305a48923d8b6c61e3d0e2b31ce2ddf36a06" 1454 | }, 1455 | "LITEAPKS": { 1456 | "source": "https://liteapks.com/picsart-2.html", 1457 | "version": "27.7.2", 1458 | "packageName": "com.picsart.studio", 1459 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/picsart_liteapks.apk", 1460 | "safe": true, 1461 | "sha256": "00120715042c8652bc0e946ea407acab28045ffe30082141e199020e60a21a9a" 1462 | }, 1463 | "APKDONE": { 1464 | "source": "https://apkdone.com/picsart-app/", 1465 | "version": "2.1.2", 1466 | "packageName": "com.apkdone.appstore", 1467 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/picsart_apkdone.apk", 1468 | "safe": false, 1469 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1470 | } 1471 | } 1472 | }, 1473 | "Fitify": { 1474 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/fitify.png", 1475 | "depends": [], 1476 | "complements": [], 1477 | "features": [ 1478 | "Premium Unlocked" 1479 | ], 1480 | "providers": { 1481 | "MODYOLO": { 1482 | "source": "https://modyolo.com/fitify-workout-routines-training-plans.html", 1483 | "version": "1.101.1", 1484 | "packageName": "com.fitifyworkouts.bodyweight.workoutapp", 1485 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/fitify_modyolo.apk", 1486 | "safe": true, 1487 | "sha256": "0dbaf2fe38fe4fd1caa79ca68981d40a759a56ab67e6b8c9cb7ba12612d42754" 1488 | }, 1489 | "LITEAPKS": { 1490 | "source": "https://liteapks.com/fitify.html", 1491 | "version": "1.101.1", 1492 | "packageName": "com.fitifyworkouts.bodyweight.workoutapp", 1493 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/fitify_liteapks.apk", 1494 | "safe": true, 1495 | "sha256": "4c3e643fb0ce2224337b17d40083ca56de0a21c00f28d64cfb41c026a24eb295" 1496 | }, 1497 | "APKDONE": { 1498 | "source": "https://apkdone.com/fitify/", 1499 | "version": "2.1.2", 1500 | "packageName": "com.apkdone.appstore", 1501 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/fitify_apkdone.apk", 1502 | "safe": false, 1503 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1504 | } 1505 | } 1506 | }, 1507 | "ENIX": { 1508 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/enix.png", 1509 | "depends": [], 1510 | "complements": [ 1511 | "Niagara Launcher", 1512 | "Smart Launcher 6", 1513 | "Lawnchair" 1514 | ], 1515 | "features": [ 1516 | "Premium Unlocked" 1517 | ], 1518 | "providers": { 1519 | "MODYOLO": { 1520 | "source": "https://modyolo.com/enix-icon-pack.html", 1521 | "version": "5.0", 1522 | "packageName": "com.lknninex.enix", 1523 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/enix_modyolo.apk", 1524 | "safe": false, 1525 | "sha256": "47de6897afed1d1fd24783d3384a3bc858f0905a395bf14dae85e45571f0b46e" 1526 | } 1527 | } 1528 | }, 1529 | "WPS Office": { 1530 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/wps_office.png", 1531 | "depends": [], 1532 | "complements": [], 1533 | "features": [ 1534 | "Premium Unlocked" 1535 | ], 1536 | "providers": { 1537 | "MODYOLO": { 1538 | "source": "https://modyolo.com/wps-office-pdf-word-excel-ppt.html", 1539 | "version": "18.17.2", 1540 | "packageName": "cn.wps.moffice_eng", 1541 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/wpsoffice_modyolo.apk", 1542 | "safe": false, 1543 | "sha256": "2fc3b3966bb4bb1ac1150eeadd9dd728ccd3050e811003121df137293576d3a3" 1544 | }, 1545 | "LITEAPKS": { 1546 | "source": "https://liteapks.com/wps-office.html", 1547 | "version": "18.17.2", 1548 | "packageName": "cn.wps.moffice_eng", 1549 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/wpsoffice_liteapks.apk", 1550 | "safe": false, 1551 | "sha256": "33eb4f3f87c45f2a00b76040800fd3914a521a0eae9a1f121098076eaddbaaea" 1552 | }, 1553 | "MODZOCO": { 1554 | "source": "https://modzoco.com/wps-office.html", 1555 | "version": "18.15", 1556 | "packageName": "cn.wps.moffice_eng", 1557 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/wpsoffice_modzoco.apk", 1558 | "safe": false, 1559 | "sha256": "bd831662a4a9dce5a8ace9e34a39f3e80fc6caddd86fed07a395789fee4641a7" 1560 | } 1561 | } 1562 | }, 1563 | "X-plore File Manager": { 1564 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/x-plore_file_manager.png", 1565 | "depends": [], 1566 | "complements": [], 1567 | "features": [ 1568 | "Premium Unlocked" 1569 | ], 1570 | "providers": { 1571 | "MODYOLO": { 1572 | "source": "https://modyolo.com/x-plore-file-manager.html", 1573 | "version": "4.43.05", 1574 | "packageName": "com.lonelycatgames.Xplore", 1575 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/xplorefilemanager_modyolo.apk", 1576 | "safe": false, 1577 | "sha256": "916c3bddee7d97b99f1bd52b3d05fe5aaaa3b797adc9b0d5f7dbf737fb0e19b0" 1578 | }, 1579 | "LITEAPKS": { 1580 | "source": "https://liteapks.com/x-plore-file-manager-2.html", 1581 | "version": "4.43.05", 1582 | "packageName": "com.lonelycatgames.Xplore", 1583 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/xplorefilemanager_liteapks.apk", 1584 | "safe": false, 1585 | "sha256": "59a244a0cac8b8f5d955e85d49c227fb9fdcca70099c1683408bd7661027c87c" 1586 | }, 1587 | "APKDONE": { 1588 | "source": "https://apkdone.com/x-plore-file-manager/", 1589 | "version": "2.1.2", 1590 | "packageName": "com.apkdone.appstore", 1591 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/xplorefilemanager_apkdone.apk", 1592 | "safe": false, 1593 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1594 | }, 1595 | "MODZOCO": { 1596 | "source": "https://modzoco.com/x-plore-file-manager.html", 1597 | "version": "4.40.11", 1598 | "packageName": "com.lonelycatgames.Xplore", 1599 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/xplorefilemanager_modzoco.apk", 1600 | "safe": false, 1601 | "sha256": "8d90b5a14a60a5b8c5af7fcff5c9464ef4d1a383047065300570c284ded5baea" 1602 | } 1603 | } 1604 | }, 1605 | "Truecaller": { 1606 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/truecaller.png", 1607 | "depends": [], 1608 | "complements": [], 1609 | "features": [ 1610 | "Premium Unlocked" 1611 | ], 1612 | "providers": { 1613 | "MODYOLO": { 1614 | "source": "https://modyolo.com/truecaller-caller-id-block.html", 1615 | "version": "15.17.5", 1616 | "packageName": "com.truecaller", 1617 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/truecaller_modyolo.apk", 1618 | "safe": false, 1619 | "sha256": "829c3079d7d5fe72d8b93ff9feefe12e29805c0fd209ce89b78023ad078d5751" 1620 | }, 1621 | "LITEAPKS": { 1622 | "source": "https://liteapks.com/truecaller-app.html", 1623 | "version": "15.17.5", 1624 | "packageName": "com.truecaller", 1625 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/truecaller_liteapks.apk", 1626 | "safe": false, 1627 | "sha256": "db4d420022adf7ef15ef9103c48c95b7d1d48db8c86a325ea14ff23a709d922b" 1628 | } 1629 | } 1630 | }, 1631 | "Lightroom": { 1632 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/adobe_lightroom.png", 1633 | "depends": [], 1634 | "complements": [], 1635 | "features": [ 1636 | "Premium Unlocked" 1637 | ], 1638 | "providers": { 1639 | "ReVanced": { 1640 | "source": "https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root", 1641 | "version": "9.2.0", 1642 | "packageName": "com.adobe.lrmobile", 1643 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/lightroom_revanced.apk", 1644 | "safe": true, 1645 | "sha256": "98ca197799ab89a2e545bda43363c4b5a805ad2480149f7db24eb42da6c5a91f" 1646 | }, 1647 | "MODYOLO": { 1648 | "source": "https://modyolo.com/adobe-lightroom.html", 1649 | "version": "10.3.2", 1650 | "packageName": "com.adobe.lrmobile", 1651 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/lightroom_modyolo.apk", 1652 | "safe": false, 1653 | "sha256": "aaf5eaa2746f8c8ffabe43918df5a06b1f1545c95706a45aaece85634dda8517" 1654 | }, 1655 | "LITEAPKS": { 1656 | "source": "https://liteapks.com/adobe-lightroom-2.html", 1657 | "version": "10.3.2", 1658 | "packageName": "com.adobe.lrmobile", 1659 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/lightroom_liteapks.apk", 1660 | "safe": true, 1661 | "sha256": "d999fbb52367422ab69eef02faa6b46b5993090a555ddbdf5919288acbf06843" 1662 | }, 1663 | "APKDONE": { 1664 | "source": "https://apkdone.com/adobe-lightroom/", 1665 | "version": "2.1.2", 1666 | "packageName": "com.apkdone.appstore", 1667 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/lightroom_apkdone.apk", 1668 | "safe": false, 1669 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1670 | }, 1671 | "MODZOCO": { 1672 | "source": "https://modzoco.com/adobe-lightroom.html", 1673 | "version": "10.1.0", 1674 | "packageName": "com.adobe.lrmobile", 1675 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/lightroom_modzoco.apk", 1676 | "safe": false, 1677 | "sha256": "b879ee41af741bfc1e1d15432943a1fdebb5c1a24de258eb1856d9057ee0d5ed" 1678 | } 1679 | } 1680 | }, 1681 | "Shazam": { 1682 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/shazam.png", 1683 | "depends": [], 1684 | "complements": [], 1685 | "features": [ 1686 | "Premium Unlocked" 1687 | ], 1688 | "providers": { 1689 | "MODYOLO": { 1690 | "source": "https://modyolo.com/shazam.html", 1691 | "version": "15.23.1-250527", 1692 | "packageName": "com.shazam.android", 1693 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/shazam_modyolo.apk", 1694 | "safe": true, 1695 | "sha256": "6a2300d5af21e2df11542f37e3712ea0643f765fd3ec2d7a961442948c5566ab" 1696 | }, 1697 | "LITEAPKS": { 1698 | "source": "https://liteapks.com/shazam.html", 1699 | "version": "15.25.0-250529", 1700 | "packageName": "com.shazam.android", 1701 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/shazam_liteapks.apk", 1702 | "safe": true, 1703 | "sha256": "4ad360ed775284598a52e29119d857c3709074ea551dd71b0480d02a14dbce49" 1704 | }, 1705 | "APKDONE": { 1706 | "source": "https://apkdone.com/shazam/", 1707 | "version": "2.1.2", 1708 | "packageName": "com.apkdone.appstore", 1709 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/shazam_apkdone.apk", 1710 | "safe": false, 1711 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1712 | }, 1713 | "MODZOCO": { 1714 | "source": "https://modzoco.com/shazam.html", 1715 | "version": "15.4.1-241210", 1716 | "packageName": "com.shazam.android", 1717 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/shazam_modzoco.apk", 1718 | "safe": true, 1719 | "sha256": "cf3a387101549c6ea65510307028d17ceb07a31f6e61bd676eed898b7d149654" 1720 | } 1721 | } 1722 | }, 1723 | "Duolingo": { 1724 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/duolingo.png", 1725 | "depends": [], 1726 | "complements": [], 1727 | "features": [ 1728 | "Premium Unlocked", 1729 | "Lite", 1730 | "Optimized Size" 1731 | ], 1732 | "providers": { 1733 | "MODYOLO": { 1734 | "source": "https://modyolo.com/duolingo.html", 1735 | "version": "6.26.2", 1736 | "packageName": "com.dlg", 1737 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/duolingo_modyolo.apk", 1738 | "safe": true, 1739 | "sha256": "9c0e8c0cefb5bd405cd1c0d5c0086c0bea474a9e609ec69fbb556e18e1e736ab" 1740 | }, 1741 | "LITEAPKS": { 1742 | "source": "https://liteapks.com/duolingo.html", 1743 | "version": "6.33.5", 1744 | "packageName": "com.duolingo", 1745 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/duolingo_liteapks.apk", 1746 | "safe": true, 1747 | "sha256": "916668f53c1144c71c8c63dc61eed1efcd5cc64a41ced0a442168a215e7ca4da" 1748 | }, 1749 | "APKDONE": { 1750 | "source": "https://apkdone.com/duolingo/", 1751 | "version": "2.1.2", 1752 | "packageName": "com.apkdone.appstore", 1753 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/duolingo_apkdone.apk", 1754 | "safe": false, 1755 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1756 | }, 1757 | "MODZOCO": { 1758 | "source": "https://modzoco.com/duolingo.html", 1759 | "version": "6.13.5", 1760 | "packageName": "com.duolingo", 1761 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/duolingo_modzoco.apk", 1762 | "safe": true, 1763 | "sha256": "7cc635e8e7d3328ffd27933e5be233df11f967cefb9a4917e9f8bfe3a4bf2df2" 1764 | } 1765 | } 1766 | }, 1767 | "MX Player": { 1768 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/mx_player.png", 1769 | "depends": [], 1770 | "complements": [], 1771 | "features": [ 1772 | "Gold Subscription Unlocked", 1773 | "Ad-free" 1774 | ], 1775 | "providers": { 1776 | "MODYOLO": { 1777 | "source": "https://modyolo.com/mx-video-player.html", 1778 | "version": "1.95.0", 1779 | "packageName": "com.mx.plus", 1780 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/mxplayer_modyolo.apk", 1781 | "safe": true, 1782 | "sha256": "51d48e7b05603c201f3c79c8c387270b0b46ce62a1abad34b46ac9d6693e58ea" 1783 | }, 1784 | "LITEAPKS": { 1785 | "source": "https://liteapks.com/mx-player.html", 1786 | "version": "1.97.0", 1787 | "packageName": "com.mxtech.videoplayer.pro", 1788 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/mxplayer_liteapks.apk", 1789 | "safe": true, 1790 | "sha256": "db101454aee75075e329cc5df350f56444f147f914b747d644dc82617853baca" 1791 | }, 1792 | "APKDONE": { 1793 | "source": "https://apkdone.com/mx-player/", 1794 | "version": "2.1.2", 1795 | "packageName": "com.apkdone.appstore", 1796 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/mxplayer_apkdone.apk", 1797 | "safe": false, 1798 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1799 | }, 1800 | "MODZOCO": { 1801 | "source": "https://modzoco.com/mx-player-pro.html", 1802 | "version": "1.86.0", 1803 | "packageName": "com.mxtech.videoplayer.pro", 1804 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/mxplayer_modzoco.apk", 1805 | "safe": true, 1806 | "sha256": "8de2d41adaa04d39d18d7d806a831914ebd85472d0f5c1a82658d301eb54576a" 1807 | } 1808 | } 1809 | }, 1810 | "SNOW": { 1811 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/snow.png", 1812 | "depends": [], 1813 | "complements": [], 1814 | "features": [ 1815 | "Premium Unlocked" 1816 | ], 1817 | "providers": { 1818 | "MODYOLO": { 1819 | "source": "https://modyolo.com/snow-storm-superhero.html", 1820 | "version": "14.2.2", 1821 | "packageName": "com.campmobile.snow", 1822 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/snow_modyolo.apk", 1823 | "safe": false, 1824 | "sha256": "4420807351c1a121cd0833271afca3f69cc1d321ae5b553dd2e08384a8321e24" 1825 | }, 1826 | "LITEAPKS": { 1827 | "source": "https://liteapks.com/snow.html", 1828 | "version": "14.2.2", 1829 | "packageName": "com.campmobile.snow", 1830 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/snow_liteapks.apk", 1831 | "safe": true, 1832 | "sha256": "673a4cf4831d5e572111afd53b0aabde41fd65f070696bd22e3d3a41f1135590" 1833 | }, 1834 | "APKDONE": { 1835 | "source": "https://apkdone.com/snow/", 1836 | "version": "2.1.2", 1837 | "packageName": "com.apkdone.appstore", 1838 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/snow_apkdone.apk", 1839 | "safe": false, 1840 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1841 | }, 1842 | "MODZOCO": { 1843 | "source": "https://modzoco.com/snow.html", 1844 | "version": "13.6.11", 1845 | "packageName": "com.campmobile.snow", 1846 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/snow_modzoco.apk", 1847 | "safe": false, 1848 | "sha256": "c781d872c98440e954afc037420e59e7c93844233bbc48c4b23c304f21dabe97" 1849 | } 1850 | } 1851 | }, 1852 | "SD Maid Pro": { 1853 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/sd_maid_pro.png", 1854 | "depends": [], 1855 | "complements": [], 1856 | "features": [ 1857 | "Premium Unlocked" 1858 | ], 1859 | "providers": { 1860 | "MODYOLO": { 1861 | "source": "https://modyolo.com/sd-maid-pro.html", 1862 | "version": "5.6.1", 1863 | "packageName": "eu.thedarken.sdm", 1864 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/sdmaidpro_modyolo.apk", 1865 | "safe": false, 1866 | "sha256": "b50a3a75e57ba6d33c39edce6bb150d2152f52b3558c962f878b0c4d82ff2d37" 1867 | }, 1868 | "LITEAPKS": { 1869 | "source": "https://liteapks.com/sd-maid-pro.html", 1870 | "version": "5.6.3", 1871 | "packageName": "eu.thedarken.sdm", 1872 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/sdmaidpro_liteapks.apk", 1873 | "safe": false, 1874 | "sha256": "142796598e1764d8d04a87659568e8367b33aae07c9586bd1459a632b79db143" 1875 | } 1876 | } 1877 | }, 1878 | "SD Maid SE": { 1879 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/sd_maid_se.png", 1880 | "depends": [], 1881 | "complements": [], 1882 | "features": [ 1883 | "Premium Unlocked" 1884 | ], 1885 | "providers": { 1886 | "LITEAPKS": { 1887 | "source": "https://liteapks.com/sd-maid-2-se-system-cleaner.html", 1888 | "version": "1.4.12-rc0", 1889 | "packageName": "eu.darken.sdmse", 1890 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/sdmaidse_liteapks.apk", 1891 | "safe": true, 1892 | "sha256": "92b7777976ce2f80ed23bc19c7e5420bb9d644582f9370479c481e72ac5140b2" 1893 | } 1894 | } 1895 | }, 1896 | "1DM+": { 1897 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/1dm+.png", 1898 | "depends": [], 1899 | "complements": [], 1900 | "features": [ 1901 | "Full Version", 1902 | "Patched" 1903 | ], 1904 | "providers": { 1905 | "MODYOLO": { 1906 | "source": "https://modyolo.com/1dm.html", 1907 | "version": "18.2", 1908 | "packageName": "idm.internet.download.manager.plus", 1909 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/onedm_modyolo.apk", 1910 | "safe": false, 1911 | "sha256": "5076e6966419256327a38f6a222ee866d395eda861df9a305a2bf867a6d14a12" 1912 | }, 1913 | "LITEAPKS": { 1914 | "source": "https://liteapks.com/1dm-browser-downloader.html", 1915 | "version": "18.2", 1916 | "packageName": "idm.internet.download.manager.plus", 1917 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/onedm_liteapks.apk", 1918 | "safe": true, 1919 | "sha256": "ddb5f9f83a1953a1e565d8607baa5ebe04da4816908ad72fc40fc1124fa510b8" 1920 | }, 1921 | "APKDONE": { 1922 | "source": "https://apkdone.com/idm-music-video-torrent-downloader/", 1923 | "version": "2.1.2", 1924 | "packageName": "com.apkdone.appstore", 1925 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/onedm_apkdone.apk", 1926 | "safe": false, 1927 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1928 | }, 1929 | "MODZOCO": { 1930 | "source": "https://modzoco.com/1dm.html", 1931 | "version": "17.2", 1932 | "packageName": "idm.internet.download.manager.plus", 1933 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/onedm_modzoco.apk", 1934 | "safe": true, 1935 | "sha256": "8ce661247f709238556ba3c238f99894a9b2db0ff10142512c19f095f6b99b1e" 1936 | } 1937 | } 1938 | }, 1939 | "My Diary": { 1940 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/my_diary.png", 1941 | "depends": [], 1942 | "complements": [], 1943 | "features": [ 1944 | "Premium Unlocked" 1945 | ], 1946 | "providers": { 1947 | "MODYOLO": { 1948 | "source": "https://modyolo.com/my-diary.html", 1949 | "version": "1.03.92.0606", 1950 | "packageName": "mydiary.journal.diary.diarywithlock.diaryjournal.secretdiary", 1951 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/mydiary_modyolo.apk", 1952 | "safe": true, 1953 | "sha256": "1b2c24396fb794da11e0a26f85bd23407b9cc3afd33fb56dd5a192a90bd27ecb" 1954 | }, 1955 | "APKDONE": { 1956 | "source": "https://apkdone.com/my-diary/", 1957 | "version": "2.1.2", 1958 | "packageName": "com.apkdone.appstore", 1959 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/mydiary_apkdone.apk", 1960 | "safe": false, 1961 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 1962 | }, 1963 | "MODZOCO": { 1964 | "source": "https://modzoco.com/my-diary.html", 1965 | "version": "1.03.77.1205", 1966 | "packageName": "mydiary.journal.diary.diarywithlock.diaryjournal.secretdiary", 1967 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/mydiary_modzoco.apk", 1968 | "safe": false, 1969 | "sha256": "614129dbb9f4cc4825449f22f2d2331231f7a3dda38bd8ced1fcd72241aee74c" 1970 | } 1971 | } 1972 | }, 1973 | "nzb360": { 1974 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/nzb360.png", 1975 | "depends": [], 1976 | "complements": [], 1977 | "features": [ 1978 | "Premium Unlocked", 1979 | "No ads" 1980 | ], 1981 | "providers": { 1982 | "MODYOLO": { 1983 | "source": "https://modyolo.com/nzb360.html", 1984 | "version": "20.6", 1985 | "packageName": "com.kevinforeman.nzb360", 1986 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/nzb360_modyolo.apk", 1987 | "safe": true, 1988 | "sha256": "1323b700aa523e9f4e4ba1884d2aebf5e2f44302a6a7cd4b3a32d3d0efc80465" 1989 | }, 1990 | "LITEAPKS": { 1991 | "source": "https://liteapks.com/nzb360.html", 1992 | "version": "20.6", 1993 | "packageName": "com.kevinforeman.nzb360", 1994 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/nzb360_liteapks.apk", 1995 | "safe": true, 1996 | "sha256": "8ac697aa9af8754e6e78f6fcf09bd45a21500d0906041929de94c878709c598b" 1997 | }, 1998 | "APKDONE": { 1999 | "source": "https://apkdone.com/nzb360/", 2000 | "version": "2.1.2", 2001 | "packageName": "com.apkdone.appstore", 2002 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/nzb360_apkdone.apk", 2003 | "safe": false, 2004 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 2005 | } 2006 | } 2007 | }, 2008 | "Nova Launcher": { 2009 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/nova_launcher.png", 2010 | "depends": [], 2011 | "complements": [], 2012 | "features": [ 2013 | "Premium Unlocked" 2014 | ], 2015 | "providers": { 2016 | "MODYOLO": { 2017 | "source": "https://modyolo.com/nova-launcher-prime.html", 2018 | "version": "8.1.1", 2019 | "packageName": "com.teslacoilsw.launcher", 2020 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/novalauncher_modyolo.apk", 2021 | "safe": true, 2022 | "sha256": "a98943ab4f6d7a014059a78061d5f8cc383e44c40a88fa15bfd2e10325868976" 2023 | }, 2024 | "LITEAPKS": { 2025 | "source": "https://liteapks.com/nova-launcher-prime.html", 2026 | "version": "8.1.1", 2027 | "packageName": "com.teslacoilsw.launcher", 2028 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/novalauncher_liteapks.apk", 2029 | "safe": true, 2030 | "sha256": "cef82342f50055543d6fc88957cdcbb638e00b04586609dc85ec1f83d9bacc98" 2031 | }, 2032 | "APKDONE": { 2033 | "source": "https://apkdone.com/nova-launcher-prime-apk/", 2034 | "version": "2.1.2", 2035 | "packageName": "com.apkdone.appstore", 2036 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/novalauncher_apkdone.apk", 2037 | "safe": false, 2038 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 2039 | }, 2040 | "MODZOCO": { 2041 | "source": "https://modzoco.com/nova-launcher-prime.html", 2042 | "version": "8.0.13", 2043 | "packageName": "com.teslacoilsw.launcher", 2044 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/novalauncher_modzoco.apk", 2045 | "safe": false, 2046 | "sha256": "03f46627d62f2118376986818d01726b7a93a2fe6afdc1f80e25cfb3df7ce5d2" 2047 | } 2048 | } 2049 | }, 2050 | "Waze": { 2051 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/waze.png", 2052 | "depends": [], 2053 | "complements": [], 2054 | "features": [ 2055 | "Premium Unlocked" 2056 | ], 2057 | "providers": { 2058 | "MODYOLO": { 2059 | "source": "https://modyolo.com/waze.html", 2060 | "version": "5.7.2.0 chuppito release", 2061 | "packageName": "com.wten", 2062 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/waze_modyolo.apk", 2063 | "safe": false, 2064 | "sha256": "7b02f853f62e3615a7d307ccc7a00959be9e4dd89d0b30b356e9730ccd708a9a" 2065 | }, 2066 | "LITEAPKS": { 2067 | "source": "https://liteapks.com/waze.html", 2068 | "version": "5.7.2.0 chuppito release", 2069 | "packageName": "com.waze", 2070 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/waze_liteapks.apk", 2071 | "safe": false, 2072 | "sha256": "1ab534b3ee0966bec68131c59003ef01e407a22438ac435918420eff36840474" 2073 | }, 2074 | "MODZOCO": { 2075 | "source": "https://modzoco.com/waze.html", 2076 | "version": "5.3.0.0 chuppito release", 2077 | "packageName": "com.waze", 2078 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/waze_modzoco.apk", 2079 | "safe": false, 2080 | "sha256": "4583056db9a6e86805c61b0b951eb95228459b7b6b51c70b0dc4a85e6505d721" 2081 | } 2082 | } 2083 | }, 2084 | "ES File Explorer": { 2085 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/es_file_manager.png", 2086 | "depends": [], 2087 | "complements": [], 2088 | "features": [ 2089 | "Premium Unlocked" 2090 | ], 2091 | "providers": { 2092 | "MODYOLO": { 2093 | "source": "https://modyolo.com/esx-file-manager-explorer.html", 2094 | "version": "4.4.3.1", 2095 | "packageName": "com.estrongs.android.pop", 2096 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/esfileexplorer_modyolo.apk", 2097 | "safe": true, 2098 | "sha256": "a2f0025a2b90d741775f778ec3a000cbfa624a9c5bad5a7300c9c739a1dcf41d" 2099 | }, 2100 | "LITEAPKS": { 2101 | "source": "https://liteapks.com/es-file-explorer.html", 2102 | "version": "4.4.3.1", 2103 | "packageName": "com.estrongs.android.pop", 2104 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/esfileexplorer_liteapks.apk", 2105 | "safe": true, 2106 | "sha256": "3c0e8fdea41760fecb7ba2c94b23b9ff3614b2c69ca150c396ae2ad9d2741b54" 2107 | }, 2108 | "APKDONE": { 2109 | "source": "https://apkdone.com/es-file-explorer-manager-pro/", 2110 | "version": "2.1.2", 2111 | "packageName": "com.apkdone.appstore", 2112 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/esfileexplorer_apkdone.apk", 2113 | "safe": false, 2114 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 2115 | }, 2116 | "MODZOCO": { 2117 | "source": "https://modzoco.com/es-file-explorer.html", 2118 | "version": "4.4.2.17", 2119 | "packageName": "com.estrongs.android.pop", 2120 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/esfileexplorer_modzoco.apk", 2121 | "safe": false, 2122 | "sha256": "3bcdb830247a0a9e73a6c619aa8d1e5dd656393e53d9b5b59cebe75bb8b578c6" 2123 | } 2124 | } 2125 | }, 2126 | "Friendly For Twitter/X": { 2127 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/FriendlyForTwitterX.png", 2128 | "depends": [], 2129 | "complements": [], 2130 | "features": [ 2131 | "Premium Unlocked" 2132 | ], 2133 | "providers": { 2134 | "MODYOLO": { 2135 | "source": "https://modyolo.com/friendly-for-twitter.html", 2136 | "version": "3.6.11", 2137 | "packageName": "io.friendly.twitter", 2138 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/friendlyfortwitterx_modyolo.apk", 2139 | "safe": false, 2140 | "sha256": "ef38a3df960695fde2b457a5855f1207d0ed1ee6eee5adfd07c634af3807b08b" 2141 | }, 2142 | "LITEAPKS": { 2143 | "source": "https://liteapks.com/friendly-for-twitter.html", 2144 | "version": "4.2.1", 2145 | "packageName": "io.friendly.twitter", 2146 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/friendlyfortwitterx_liteapks.apk", 2147 | "safe": true, 2148 | "sha256": "03b3d39aee97aee951365ff3b033174b20216058f975ecfacd64fb5e994ec83e" 2149 | } 2150 | } 2151 | }, 2152 | "Snapchat": { 2153 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/Snapchat.png", 2154 | "depends": [], 2155 | "complements": [], 2156 | "features": [ 2157 | "Secret Screenshot", 2158 | "Secret Screen Record", 2159 | "Hide view snap", 2160 | "Hide read messages", 2161 | "Secret typing", 2162 | "Hide online status" 2163 | ], 2164 | "providers": { 2165 | "FouadMODS": { 2166 | "source": "https://fmmods.com/fouad-snapchat/", 2167 | "version": "13.27.0.42", 2168 | "packageName": "com.snapchat.android", 2169 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/snapchat_fouadmods.apk", 2170 | "safe": true, 2171 | "sha256": "6723554f064758565512a5458db220143a369ac6b79591ecc7b9404c2e2695eb" 2172 | } 2173 | } 2174 | }, 2175 | "Facebook": { 2176 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/facebook.png", 2177 | "depends": [], 2178 | "complements": [], 2179 | "features": [ 2180 | "Hide story ads" 2181 | ], 2182 | "providers": { 2183 | "ReVanced": { 2184 | "source": "https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root", 2185 | "version": "490.0.0.63.82", 2186 | "packageName": "com.facebook.katana", 2187 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/facebook_revanced.apk", 2188 | "safe": true, 2189 | "sha256": "0d7bfecfc288820bcfdd978e07e018fc95319176c8cf75bceb129711bd81e90c" 2190 | } 2191 | } 2192 | }, 2193 | "Messenger": { 2194 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/messenger.png", 2195 | "depends": [], 2196 | "complements": [], 2197 | "features": [ 2198 | "Disable switching emoji to sticker", 2199 | "Disable typing indicator", 2200 | "Hide inbox ads", 2201 | "Hide inbox subtabs" 2202 | ], 2203 | "providers": { 2204 | "ReVanced": { 2205 | "source": "https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root", 2206 | "version": "510.0.0.67.109", 2207 | "packageName": "com.facebook.orca", 2208 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/messenger_revanced.apk", 2209 | "safe": true, 2210 | "sha256": "dcb1bb1a53e60faf4a4ac0b52db2557a91c0143b4f0edc732768738f26f296c0" 2211 | } 2212 | } 2213 | }, 2214 | "X": { 2215 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/x.png", 2216 | "depends": [], 2217 | "complements": [], 2218 | "features": [ 2219 | "Hide view count", 2220 | "Dynamic color", 2221 | "Hide recommended users", 2222 | "Hide ads", 2223 | "Sanitize sharing links", 2224 | "Open links with app chooser", 2225 | "Unlock downloads" 2226 | ], 2227 | "providers": { 2228 | "ReVanced": { 2229 | "source": "https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/", 2230 | "version": "10.86.0-release.0", 2231 | "packageName": "com.twitter.android", 2232 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/x_revanced.apk", 2233 | "safe": true, 2234 | "sha256": "4f479665109e64ecd0d11c6a897c2fd367ce2418b7f981dfb9ac07a7d299ebdf" 2235 | } 2236 | } 2237 | }, 2238 | "RAR": { 2239 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/rar.png", 2240 | "depends": [], 2241 | "complements": [], 2242 | "features": [ 2243 | "Hide purchase reminder" 2244 | ], 2245 | "providers": { 2246 | "ReVanced": { 2247 | "source": "https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root/", 2248 | "version": "7.11.build127", 2249 | "packageName": "com.rarlab.rar", 2250 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/rar_revanced.apk", 2251 | "safe": false, 2252 | "sha256": "d319a356cea76207c5d686452d16511001b02aa23e6300c98943fc514f7fc50c" 2253 | }, 2254 | "MODZOCO": { 2255 | "source": "https://modzoco.com/rar.html", 2256 | "version": "7.00.build122", 2257 | "packageName": "com.rarlab.rar", 2258 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/rar_modzoco.apk", 2259 | "safe": true, 2260 | "sha256": "805536d161cc4ba0777d15a54941b6ff60071d11df4234f428e1834f48a777c2" 2261 | } 2262 | } 2263 | }, 2264 | "Secure VPN": { 2265 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/securevpn.png", 2266 | "depends": [], 2267 | "complements": [], 2268 | "features": [ 2269 | "VIP Features Unlocked" 2270 | ], 2271 | "providers": { 2272 | "MODYOLO": { 2273 | "source": "https://modyolo.com/secure-vpn.html", 2274 | "version": "4.3.8", 2275 | "packageName": "com.fast.free.unblock.secure.vpn", 2276 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/securevpn_modyolo.apk", 2277 | "safe": true, 2278 | "sha256": "77ebe043e642a89111c91a0ea299187eb2e6e63ac4a5b2f900b744c44437dbaf" 2279 | }, 2280 | "LITEAPKS": { 2281 | "source": "https://liteapks.com/secure-vpn.html", 2282 | "version": "4.3.8", 2283 | "packageName": "com.fast.free.unblock.secure.vpn", 2284 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/securevpn_liteapks.apk", 2285 | "safe": true, 2286 | "sha256": "fa888beacc0ee1860742e699e9ac9af963b8d5e6595ef73c2a79c28ad58fd4c8" 2287 | }, 2288 | "APKDONE": { 2289 | "source": "https://apkdone.com/secure-vpn-apk", 2290 | "version": "2.1.2", 2291 | "packageName": "com.apkdone.appstore", 2292 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/securevpn_apkdone.apk", 2293 | "safe": false, 2294 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 2295 | }, 2296 | "MODZOCO": { 2297 | "source": "https://modzoco.com/secure-vpn.html", 2298 | "version": "4.2.12", 2299 | "packageName": "com.fast.free.unblock.secure.vpn", 2300 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/securevpn_modzoco.apk", 2301 | "safe": false, 2302 | "sha256": "ae4a475470a0dda1acc068ab3fd5fe02cf9d758a11e42f13854fb9b91eaeacfc" 2303 | } 2304 | } 2305 | }, 2306 | "KineMaster": { 2307 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/kinemaster.png", 2308 | "depends": [], 2309 | "complements": [], 2310 | "features": [ 2311 | "Ads/Services, Analytics Disabled", 2312 | "Pro/Premium Version Unlocked", 2313 | "Full Subscription Unlocked", 2314 | "Full Shop/Assets Access Unlocked, Free Buy", 2315 | "No Watermark, 4K Export Support", 2316 | "All Functions Unlocked" 2317 | ], 2318 | "providers": { 2319 | "MODYOLO": { 2320 | "source": "https://modyolo.com/kinemaster-pro.html", 2321 | "version": "7.6.16.34690.GP", 2322 | "packageName": "com.nexstreaming.app.kinemasterfree", 2323 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/kinemaster_modyolo.apk", 2324 | "safe": true, 2325 | "sha256": "615b47a03253dac0869e15ce604453ce73a5f198433856e8367eac69e9d6e20f" 2326 | }, 2327 | "LITEAPKS": { 2328 | "source": "https://liteapks.com/kinemaster-app.html", 2329 | "version": "7.6.12.34647.GP", 2330 | "packageName": "com.nexstreaming.app.kinemasterfree", 2331 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/kinemaster_liteapks.apk", 2332 | "safe": true, 2333 | "sha256": "b76f366d13401998bfa0353ef4d577cff15377544aaef4aa56641240289be2d4" 2334 | } 2335 | } 2336 | }, 2337 | "XY VPN": { 2338 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/xyvpn.png", 2339 | "depends": [], 2340 | "complements": [], 2341 | "features": [ 2342 | "VIP Features Unlocked" 2343 | ], 2344 | "providers": { 2345 | "MODYOLO": { 2346 | "source": "https://modyolo.com/xy-vpn.html", 2347 | "version": "4.9.939", 2348 | "packageName": "com.mate.vpn", 2349 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/xyvpn_modyolo.apk", 2350 | "safe": false, 2351 | "sha256": "466cb82a953911745a1f0a92bda479908aaec78ee7da97f27c33c43f940f2ddd" 2352 | }, 2353 | "LITEAPKS": { 2354 | "source": "https://liteapks.com/xy-vpn-2.html", 2355 | "version": "4.9.939", 2356 | "packageName": "com.mate.vpn", 2357 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/xyvpn_liteapks.apk", 2358 | "safe": true, 2359 | "sha256": "3b11e612a8e7dd2c8eed6ca557b4862368370f8b7874b8b3d681afbe8828ba40" 2360 | }, 2361 | "APKDONE": { 2362 | "source": "https://apkdone.com/xy-vpn", 2363 | "version": "2.1.2", 2364 | "packageName": "com.apkdone.appstore", 2365 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/xyvpn_apkdone.apk", 2366 | "safe": false, 2367 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 2368 | }, 2369 | "MODZOCO": { 2370 | "source": "https://modzoco.com/xy-vpn.html", 2371 | "version": "4.9.211", 2372 | "packageName": "com.mate.vpn", 2373 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/xyvpn_modzoco.apk", 2374 | "safe": false, 2375 | "sha256": "4499af46091cabbc72e47589500eb6f727e66e34076a862bdded569827d6a053" 2376 | } 2377 | } 2378 | }, 2379 | "TickTick": { 2380 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/ticktick.png", 2381 | "depends": [], 2382 | "complements": [], 2383 | "features": [ 2384 | "Premium Unlocked" 2385 | ], 2386 | "providers": { 2387 | "LITEAPKS": { 2388 | "source": "https://liteapks.com/ticktick.html", 2389 | "version": "7.6.2.0", 2390 | "packageName": "com.ticktick.task", 2391 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/ticktick_liteapks.apk", 2392 | "safe": true, 2393 | "sha256": "9d595db07c89216dfd7767371d5e663915194b1fca273dfe28228c20d220650f" 2394 | }, 2395 | "MODYOLO": { 2396 | "source": "https://modyolo.com/ticktick.html", 2397 | "version": "7.6.1.1", 2398 | "packageName": "com.ticktick.task", 2399 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/ticktick_modyolo.apk", 2400 | "safe": true, 2401 | "sha256": "3ebdada44e82751a450464b3698c5db801c911feff4f565362f4dfd1f2a5596f" 2402 | }, 2403 | "APKDONE": { 2404 | "source": "https://apkdone.com/ticktick/", 2405 | "version": "2.1.2", 2406 | "packageName": "com.apkdone.appstore", 2407 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/ticktick_apkdone.apk", 2408 | "safe": false, 2409 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 2410 | }, 2411 | "MODZOCO": { 2412 | "source": "https://modzoco.com/ticktick.html", 2413 | "version": "7.4.6.0", 2414 | "packageName": "com.ticktick.task", 2415 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/ticktick_modzoco.apk", 2416 | "safe": true, 2417 | "sha256": "ce03fc487540b8b1601be89f4458b81bd65248f826ec83721883dcc3f90b0e08" 2418 | } 2419 | } 2420 | }, 2421 | "Photomath": { 2422 | "icon": "https://raw.githubusercontent.com/anfreire/updateMe-Data/main/icons/photomath.png", 2423 | "depends": [], 2424 | "complements": [], 2425 | "features": [ 2426 | "Plus Unlocked" 2427 | ], 2428 | "providers": { 2429 | "MODYOLO": { 2430 | "source": "https://modyolo.com/photomath-microblink.html", 2431 | "version": "8.49.0", 2432 | "packageName": "com.microblink.photomath", 2433 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/photomath_modyolo.apk", 2434 | "safe": false, 2435 | "sha256": "ed1a932758f4442fcd0c7f466e5c98e7669f9dda04fedbbce838fd90fb4d9ba8" 2436 | }, 2437 | "LITEAPKS": { 2438 | "source": "https://liteapks.com/photomath.html", 2439 | "version": "8.44.0", 2440 | "packageName": "com.microblink.photomath", 2441 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/photomath_liteapks.apk", 2442 | "safe": true, 2443 | "sha256": "8f1d409bd4edc9685a2e12a28a0583a985563fc385a890fd31b9c963a526cfa4" 2444 | }, 2445 | "APKDONE": { 2446 | "source": "https://apkdone.com/photomath/", 2447 | "version": "2.1.2", 2448 | "packageName": "com.apkdone.appstore", 2449 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/photomath_apkdone.apk", 2450 | "safe": false, 2451 | "sha256": "836b693453e2038b7facb5981c59477d040e2deca9a78ce833a5f3473d8a77f3" 2452 | }, 2453 | "MODZOCO": { 2454 | "source": "https://modzoco.com/photomath.html", 2455 | "version": "8.40.0", 2456 | "packageName": "com.microblink.photomath", 2457 | "download": "https://github.com/anfreire/UpdateMe-Data/releases/download/apps/photomath_modzoco.apk", 2458 | "safe": true, 2459 | "sha256": "dd780e3b824da552f4df6b5e3214f4c97389f43ad47b853f7c1d3c9a0bc11de9" 2460 | } 2461 | } 2462 | } 2463 | } -------------------------------------------------------------------------------- /tips.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open links with modded apps": { 3 | "description": "Make the modded app open links like the original app", 4 | "content": [ 5 | { 6 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/apps_open_links/0.gif", 7 | "description": "As you can see, when clicking the youtube link, the modded app doesn't open it, it opens on the browser" 8 | }, 9 | { 10 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/apps_open_links/1.gif", 11 | "description": "Open the settings app, navigate to the 'Apps' section and select the desired app" 12 | }, 13 | { 14 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/apps_open_links/2.gif", 15 | "description": "In the app's settings, click on the 'Open by default' option. This title may differ depending on the device and the Android version. Then toggle the 'Open supported links' option" 16 | }, 17 | { 18 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/apps_open_links/3.gif", 19 | "description": "Add all the supported links that you want the app to open. In this case, we are adding the youtube links" 20 | }, 21 | { 22 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/apps_open_links/4.gif", 23 | "description": "Now, when clicking the youtube link, the modded app will open it. This can be done with any app that doesn't open links" 24 | } 25 | ] 26 | }, 27 | "Disable ads auto-skip on YouTube Revanced": { 28 | "description": "Show skip button when ads are playing on YouTube Revanced", 29 | "content": [ 30 | { 31 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/yt_skip_ads/0.gif", 32 | "description": "In YouTube Revanced, navigate to the settings" 33 | }, 34 | { 35 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/yt_skip_ads/1.gif", 36 | "description": "Select 'ReVanced' and then 'SponsorBlock'" 37 | }, 38 | { 39 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/yt_skip_ads/2.gif", 40 | "description": "In every segment, select 'Show a skip button'" 41 | } 42 | ] 43 | }, 44 | "Download media on Youtube Revanced": { 45 | "description": "Make the YouTube Revanced app download through your preferred media downloader", 46 | "content": [ 47 | { 48 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/yt_download/0.gif", 49 | "description": "Navigate to the settings of YouTube Revanced" 50 | }, 51 | { 52 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/yt_download/1.gif", 53 | "description": "Select 'ReVanced', then 'Player' and finally 'External downloads'" 54 | }, 55 | { 56 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/yt_download/2.gif", 57 | "description": "Activate the 'Show external download button' and 'Override download action button' options" 58 | }, 59 | { 60 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/yt_download/3.gif", 61 | "description": "Insert the package name of the media downloader that you want to use on the 'Download package name' dialog. In this case, we are using 'Seal'. The package name can be found on the app page" 62 | }, 63 | { 64 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/yt_download/4.gif", 65 | "description": "When playing a video, the download button will be displayed. Click on it to download the video or audio" 66 | } 67 | ] 68 | }, 69 | "Check VirusTotal Analysis": { 70 | "description": "Consult the analysis of a apk file in VirusTotal", 71 | "content": [ 72 | { 73 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/check_analysis/0.gif", 74 | "description": "Navigate to the app that you want to check the analysis" 75 | }, 76 | { 77 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/check_analysis/1.gif", 78 | "description": "In the providers table, in the column 'Secure', there is a button indicating the analysis status of the app in VirusTotal" 79 | }, 80 | { 81 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/check_analysis/2.gif", 82 | "description": "Long press the button to open the analysis in the browser" 83 | } 84 | ] 85 | }, 86 | "Verify the SHA-256 of an APK": { 87 | "description": "Verify the SHA-256 of an apk's VirusTotal analysis", 88 | "content": [ 89 | { 90 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/verify_sha256/0.gif", 91 | "description": "Navigate to the app that you want to verify the SHA-256" 92 | }, 93 | { 94 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/verify_sha256/1.gif", 95 | "description": "Download the apk, by clicking on the 'install' button" 96 | }, 97 | { 98 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/verify_sha256/2.gif", 99 | "description": "Don't install the app yet, click 'cancel' on the installation dialog" 100 | }, 101 | { 102 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/verify_sha256/3.gif", 103 | "description": "Save the apk to local storage by selecting it and clicking the share button" 104 | }, 105 | { 106 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/verify_sha256/4.gif", 107 | "description": "With a tool to generate the SHA-256 of the file, like many websites or the 'Hash Droid' app, generate the SHA-256 of the apk" 108 | }, 109 | { 110 | "image": "https://raw.githubusercontent.com/anfreire/updateMe/gh-pages/scripts/gifs/verify_sha256/5.gif", 111 | "description": "Compare the generated SHA-256 with the one displayed in the app. They should be the same" 112 | } 113 | ] 114 | } 115 | } 116 | --------------------------------------------------------------------------------