PUBG Mobile 2.9 update is on the verge of its global release. This comes in after weeks of build-up as part of the multiple rounds of beta testing. Moreover, the excitement level is slowly building up, especially after the community received a sneak peek at the new content, including the World of Wonder and Metro Royale modes changes.

The developers have officially unveiled a series of new updates for the classic mode, including garage mechanics, vehicle improvements, and more. However, it is the Frozen Kingdom that has captured the players' attention.


fortnite-promotional-banner

PUBG Mobile 2.9 release date and time for all regions

As per the official announcement, PUBG Mobile 2.9 update will soon begin rolling out. It will be available in phases depending on the platform and region. However, everyone will have access to the latest version by the early hours of November 9, 2023, irrespective of the platform.

2.9 update for iOS devices (Image via official Discord server)
2.9 update for iOS devices (Image via official Discord server)

The exact schedule for PUBG Mobile 2.9 update is as follows:

Korea and Japan

Google Play Store

  • 100% rollout – November 8, 2023, at 02:00 UTC+0

App Store

  • 100% rollout – November 8, 2023, at 02:00 UTC+0

Samsung Galaxy Store

  • 100% rollout – November 8, 2023, at 02:30 UTC+0

Vietnam

Google Play Store

  • 30% rollout – November 7, 2023, at 07:00 UTC+0
  • 70% rollout – November 7, 2023, at 09:00 UTC+0
  • 100% rollout – November 7, 2023, at 11:00 UTC+0

App Store

  • 100% rollout – November 7, 2023, at 11:00 UTC+0
PUBG Mobile 2.9 update release time for Android devices (Image via official Discord server)
PUBG Mobile 2.9 update release time for Android devices (Image via official Discord server)

Taiwan

Google Play Store

  • 100% rollout – November 8, 2023, at 09:00 UTC+0

App Store

  • 100% rollout – November 8, 2023, at 03:00 UTC+0

Globally

Google Play Store

  • 30% rollout – November 8, 2023, at 06:00 UTC+0
  • 50% rollout – November 8, 2023, at 10:00 UTC+0
  • 100% rollout – November 9, 2023, at 02:00 UTC+0

App Store

  • 100% rollout – November 9, 2023, at 02:00 UTC+0

Samsung Galaxy Store

  • 100% rollout – November 8, 2023, at 06:00 UTC+0
PUBG Mobile 2.9 update release time for other stores (Image via official Discord server)
PUBG Mobile 2.9 update release time for other stores (Image via official Discord server)

Amazon Appstore

  • 100% rollout – November 9, 2023, at 02:00 UTC+0

Huawei AppGallery

  • 100% rollout – November 9, 2023, at 02:00 UTC+0

Official website & third-party stores

  • 100% rollout – November 9, 2023, at 02:00 UTC+0

The latest version of the game will be available for download through the official channels, and the APK file will be hosted on the official website. It is essential to download the patch in a Wi-Fi environment, considering its size. Furthermore, it is worth noting that cross-version matchmaking is not supported, so it is imperative to get the new version as soon as possible.

Note: PUBG Mobile is blocked in India, and because of the government-imposed restrictions, you should avoid playing the game. Instead, you can play Battlegrounds Mobile India (BGMI), Krafton's dedicated IP for the region that was launched recently.

More from Sportskeeda

" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1735377, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1735377); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1735377) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1735377) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();