How to Update GBwhatsapp without Losing Chat [Android Tutorial]

 How to Update GBwhatsapp without losing chats

Social Media users prefer using GB WhatsApp because of the more advance features it posseses. Unlike normal WhatsApp, you can customize themes, hide read receipts, and use multiple accounts and many more on GB WhatsApp. Meanwhile, using GB WhatsApp attracts some potential catchs including difficulty to update the messaging app without losing chats and temporarily or permanently ban because the usage violate WhatsApp's Term and Conditions.

Due to inability to automatically download and update GB WhatsApp from trusted source like Google Play Store, users will have to lose their chats, files and data whenever they're trying to update it. Although making use of GB WhatsApp will not format your chats history but because of the manual update it'll undergo, I'm afraid you'll have to lose your precious chattings. This is why it's advisable to always backup your account.

However, you don't have to panic about losing your chats anymore. In this article, I have a trick that actually works for you. All you need to do is continuing the reading and drop your comments in the dedicated section.

Update GBWHATSAPP without Losing Chats

Updating your GB WhatsApp with all chats, conversations, files and data is simple with "Overwrite Backup". How does Overwrite Backup works?

Overwrite Backup simply means downloading your WhatsApp Data Manually on your phone. Once this data is downloaded you can proceed to updating your GB WhatsApp. Here's how to do it:

Go-to your "Phone File Manager" and navigate to "GB WhatsApp Folder", rename the most folder. However, make sure you remember the previous name because you're going to give it back the name after installation.

Now, go-to the outdated GB WhatsApp and click on "Fouad Mods" under the "Menu" tab. Scroll down to "Update" and select "Web Download" option. Choose your prefer browser and "Download the App APK".

Once you're done downloading the app, navigate to your "Phone File Manager", go-to "Download" and click on the "APK" to show "Installation" option. Tap on "Install" to install the "APK File".

After the GB WhatsApp APK App installation, go back to the data file you rename and rename it back as it's initially named. Now open your updated app and you'll notice that all your chattings, conversations, files, data and settings are still available.

GB WhatsApp Latest Updates

Normally, GB WhatsApp Usage is not supported by Meta, parent company of Facebook, Instagram and WhatsApp. But due to its exclusive features that are not available in WhatsApp and WhatsApp Business, people prefers to use the GB version of WhatsApp. The GB WhatsApp give users more controls and personalizations over their chattings.

GB WhatsApp Features

GB WhatsApp is a Modded (twisted) version of WhatsApp developed by independent software engineers and app developers to possess extra features and give users more controls and personalizations over chattings and conversations. However, the sweet version of WhatsApp is not supported by Meta and that's why it's not available for direct updates on popular app stores like Google Play Store or Apple app store.

I believed this guide has helped you to update your GB WhatsApp without losing any of your Chats? Please share your opinion in the comments section below. Cheers!

function blurContent() { const postContent = document.querySelector('.post-body'); if (!postContent) return; // Reset if already blurred if (postContent.classList.contains('already-blurred')) { resetBlur(); } postContent.classList.add('already-blurred'); originalNodes = []; const textNodes = []; function getTextNodes(node) { if (node.nodeType === Node.TEXT_NODE && node.nodeValue.trim() !== '') { textNodes.push(node); } else if ( node.nodeType === Node.ELEMENT_NODE && !['H1', 'H2', 'H3'].includes(node.tagName) ) { node.childNodes.forEach(getTextNodes); } } getTextNodes(postContent); const totalWords = textNodes.reduce( (count, node) => count + node.nodeValue.trim().split(/\s+/).length, 0 ); const visibleWords = Math.ceil(totalWords * 0.1); let wordCount = 0; textNodes.forEach((node) => { const words = node.nodeValue.trim().split(/\s+/); if (wordCount >= visibleWords) { const blurredSpan = document.createElement('span'); blurredSpan.classList.add('blurred'); blurredSpan.innerText = words.join(' '); originalNodes.push({ blurred: blurredSpan, original: node }); node.replaceWith(blurredSpan); } else if (wordCount + words.length > visibleWords) { const visiblePart = words.slice(0, visibleWords - wordCount).join(' '); const hiddenPart = words.slice(visibleWords - wordCount).join(' '); const visibleTextNode = document.createTextNode(visiblePart + ' '); const blurredSpan = document.createElement('span'); blurredSpan.classList.add('blurred'); blurredSpan.innerText = hiddenPart; originalNodes.push({ blurred: blurredSpan, original: node }); node.replaceWith(visibleTextNode, blurredSpan); } wordCount += words.length; }); // Blur images after the first two and before the last one const images = postContent.querySelectorAll('img'); images.forEach((img, index) => { if (index >= 2 && index < images.length - 1) { img.classList.add('blurred-image'); img.style.pointerEvents = "none"; } }); // Add lock message const firstParagraph = postContent.querySelector('p'); if (firstParagraph && !document.querySelector('.lock-message')) { const lockMessage = document.createElement('div'); lockMessage.classList.add('lock-message'); lockMessage.innerHTML = '🔒 This content is locked. Click to unlock the full post.'; firstParagraph.insertAdjacentElement('afterend', lockMessage); lockMessage.addEventListener('click', async function () { const isSubscribed = localStorage.getItem('isSubscribed') === 'true'; if (isSubscribed) { unlockContent(); // localStorage.clear(); return; } let lastsubdate = localStorage.getItem('lastsubdate'); if (!lastsubdate || lastsubdate.length !== 10) { lastsubdate = await chkusbtm(); localStorage.setItem('lastsubdate', lastsubdate); } // Parse the 10-digit string to datetime const minutes = lastsubdate.slice(0, 2); const hours = lastsubdate.slice(2, 4); const day = lastsubdate.slice(4, 6); const month = lastsubdate.slice(6, 8); const year = '20' + lastsubdate.slice(8, 10); const expiryDate = new Date(`${year}-${month}-${day}T${hours}:${minutes}:00`); const timeLeft = expiryDate.getTime() - Date.now(); if (timeLeft > 0) { localStorage.setItem('isSubscribed', 'true'); unlockContent(); } else { localStorage.setItem('isSubscribed', 'false'); showPopup(); } }); } // Add styles const style = document.createElement('style'); style.innerHTML = ` .blurred { filter: blur(6px); user-select: none; position: relative; } .blurred-image { filter: blur(10px); user-select: none; pointer-events: none; position: relative; } .lock-message { background: #ffecec; color: #d9534f; padding: 10px; border: 1px solid #d9534f; text-align: center; font-weight: bold; margin: 15px 0; border-radius: 5px; cursor: pointer; } .lock-message:hover { background: #f8d7da; } `; document.head.appendChild(style); } function unlockContent() { document.querySelectorAll('.blurred').forEach((el) => { el.classList.remove('blurred'); }); document.querySelectorAll('.blurred-image').forEach((img) => { img.classList.remove('blurred-image'); img.style.pointerEvents = "auto"; }); const lockMessage = document.querySelector('.lock-message'); if (lockMessage) { lockMessage.style.display = "none"; } localStorage.setItem('contentLocked', 'false'); } function resetBlur() { originalNodes.forEach(({ blurred, original }) => { blurred.replaceWith(original); }); document.querySelectorAll('.blurred-image').forEach((img) => { img.classList.remove('blurred-image'); img.style.pointerEvents = "auto"; }); const lockMessage = document.querySelector('.lock-message'); if (lockMessage) lockMessage.remove(); document.querySelector('.post-body')?.classList.remove('already-blurred'); originalNodes = []; }

VIP Center

Loading ID...
Not Subscribed
View Service Agreement
Choose Your Plan
For new users
1 Day VIP
$1
$1.50
$1 per day
Discount
1 Week VIP
$4.99
$6.93
$0.71 per day
Discount
1 Month VIP
$19.99
$29.70
$0.66 per day
Best value with monthly subscription! Get full VIP access at just $0.66 per day.
Amount will be converted automatically at current rates
Payment Method
FW
Flutterwave