OnePlus Ace 6T: Specs, Price & Record-Breaking Sales

by Sophie Williams - Tech Editor
0 comments

OnePlus’s latest smartphone, the Ace 6T, launched in China this week with reported record-breaking initial sales. The device,powered by the new Snapdragon 8 Gen 5 processor,quickly gained traction among consumers,signaling strong momentum for the brand in a competitive market. According to reports, the Ace 6T surpassed the sales of all competitor models in its price range within ten minutes of availability, highlighting growing demand for high-performance devices.

                            <p>OnePlus recently launched the OnePlus Ace 6T in China, featuring the latest Snapdragon 8 Gen 5 processor. The new device reportedly saw significant demand in its initial sales period, signaling continued momentum for the brand.</p><p>Following the start of sales, Li Jie, President of OnePlus China, shared that the phone received a strong response from consumers, positioning it within the company’s broader performance-focused strategy this year.</p><h2><span style="color:hsl(0,75%,60%);">OnePlus Ace 6T Achieves Record-Breaking Sales Figures</span></h2><p>According to Li Jie, the OnePlus Ace 6T surpassed the total sales of all competing models in its price range for an entire day within just ten minutes of becoming available. This impressive debut underscores the growing consumer appetite for high-performance smartphones.</p><p>The strong launch aligns with OnePlus’s overall growth in the region, with the company reporting a 42.3% increase in shipments this year compared to the previous year.  This growth highlights the brand’s increasing competitiveness in the Chinese smartphone market.</p><p>Li Jie also noted that other recent models, such as the OnePlus 15 and Ace 6, have maintained consistent demand, bolstering expectations for record growth by the end of 2025.</p><figure class="image"><img src="https://media.elbalad.news/ArticleUpload/2025126image_731_110217.jpg"/><figcaption>OnePlus Ace 6T</figcaption></figure><h2><span style="color:hsl(0,75%,60%);">OnePlus Ace 6T: Price and Specifications</span></h2><p>The OnePlus Ace 6T is available in China starting at 2,399 yuan (approximately $340 USD). The device is designed with a focus on enhanced performance and is the first smartphone globally to feature the Snapdragon 8 Gen 5 platform, offering notable improvements in processor and graphics capabilities compared to the Snapdragon 8 Gen 3.</p><p>OnePlus has also integrated its own gaming engine at the processor level to optimize frame rate stability and responsiveness, enabling a smooth gaming experience with a 165Hz refresh rate in games like Peace Elite.  This focus on gaming performance caters to a growing segment of mobile users.</p><p>The device boasts a 6.83-inch 1.5K display with a 165Hz refresh rate, as well as an ultrasonic 3D fingerprint sensor. </p><p>Powering the phone is a robust 8300mAh battery supporting 100W wired fast charging. Durability is enhanced through IP66, IP68, IP69, and IP69K ratings for water and dust resistance.</p><p>For photography, the OnePlus Ace 6T features a 16-megapixel front-facing camera and a dual 50-megapixel rear camera system.</p><p>The OnePlus Ace 6T appears to be off to a strong start and is expected to be a significant contender in the flagship smartphone market this year.</p>


                        </div><script type="text/javascript">
        replaceOembeds();
        function replaceOembeds() {
            var allEmbeds = document.getElementsByTagName("OEMBED");
            while (allEmbeds.length != 0) {
                replaceOembedWithHtml(allEmbeds[0], extractLinkFromOembed(allEmbeds[0]));
                allEmbeds = document.getElementsByTagName("OEMBED");
            }
            runYoutubeLazyLoad();
            setTimeout(function () {
                loadfbApi();
            }, 4000);
        }

        function replaceOembedWithHtml(element, sourceData) {
            if (sourceData.source.toLowerCase() === "youtube") {
                var html="<div class="yt-embed"><div class="embed-wrap">" +
                    '<div class="embed-container">' +
                    '<div class="youtube" data-embed="' + sourceData.id + '">' +
                    '<div class="play-button"> ' +
                    '<svg class="icon"><use xlink:href="http://www.elbalad.news/themes/elbalad/assets/images/icons.svg#youtube"></use></svg>' +
                    '</div>' +
                    '</div></div></div></div>';
                replaceElementWithHtml(element, html);
            } else if (sourceData.source.toLowerCase() === "instagram") {
                var html="<div class="instagram-embed"><iframe class="lazyload" width="320" height="440" data-src="https://instagram.com/p/" + sourceData.id + '/embed" frameborder="0"></iframe></div>';
                replaceElementWithHtml(element, html);
            } else if (sourceData.source.toLowerCase() === "twitter") {
                var html="<div class="tw-embed"><iframe border=0 frameborder=0 height=250 width=550 src="https://twitframe.com/show?url=" + encodeURI(sourceData.url) + '"></iframe></div>';
                replaceElementWithHtml(element, html);
            } else if (sourceData.source.toLowerCase() === "facebook") {
                var html="<div class="fb-embed"><div class="fb-video" data-href="" + sourceData.url + '" data-width="500" data-allowfullscreen="true" data-autoplay="true" data-show-captions="true"></div></div>'
                replaceElementWithHtml(element, html);
            } else {
                replaceElementWithHtml(element, "");
            }
        }

        function extractLinkFromOembed(element) {
            return getUrlSource(element.getAttribute("url"));
        }

        function getUrlSource(url) {
            var ytRegex = /http(?:s?)://(?:www.)?youtu(?:be.com/watch?v=|.be/)([w-_]*)(&(amp;)?[w?=]*)?/;
            var instaRegex = /(https?://www.)?instagram.com(/p/(w+)/?)/;
            var twitterRegex = /twitter.com/.*/status(?:es)?/([^/?]+)/;
            var fbRegex = /^https?://www.facebook.com.*/(video(s)?|watch|story|posts)(.php?|/).+$/;

            if (ytRegex.test(url)) {
                return {
                    source: "Youtube",
                    url: url,
                    id: ytRegex.exec(url)[1]
                };
            }

            if (instaRegex.test(url)) {
                return {
                    source: "Instagram",
                    url: url,
                    id: instaRegex.exec(url)[3]
                };
            }

            if (twitterRegex.test(url)) {
                return {
                    source: "Twitter",
                    url: url,
                    id: twitterRegex.exec(url)[1]
                };
            }

            if (fbRegex.test(url)) {
                return {
                    source: "Facebook",
                    url: url,
                    id: fbRegex.exec(url)[1]
                };

            }

            return {
                source: "Unknown",
                url: url,
                id: ""
            };
        }

        function replaceElementWithHtml(element, html) {
            var str = html;
            var Obj = element; //any element to be fully replaced
            if (Obj.outerHTML) { //if outerHTML is supported
                Obj.outerHTML = str; ///it's simple replacement of whole element with contents of str var
            } else { //if outerHTML is not supported, there is a weird but crossbrowsered trick
                var tmpObj = document.createElement("div");
                tmpObj.innerHTML = '<!--THIS DATA SHOULD BE REPLACED-->';
                ObjParent = Obj.parentNode; //Okey, element should be parented
                ObjParent.replaceChild(tmpObj, Obj); //here we placing our temporary data instead of our target, so we can find it then and replace it into whatever we want to replace to
                ObjParent.innerHTML = ObjParent.innerHTML.replace('<div><!--THIS DATA SHOULD BE REPLACED--></div>', str);
            }
        }
        function loadfbApi() {
            var js = document.createElement('script');
            js.src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v3.2";
            document.body.appendChild(js);
        }
        function runYoutubeLazyLoad() {
            /// youtube lazyload
            var youtube = document.querySelectorAll(".youtube");

            for (var i = 0; i < youtube.length; i++) {

                var source = "https://img.youtube.com/vi/" + youtube[i].dataset.embed +
                    "/0.jpg";

                var image = new Image();
                image.src = "https://www.elbalad.news/themes/elbalad/assets/images/no.jpg";
                image.classList.add('lazyload');
                image.setAttribute("data-src", source);
                image.setAttribute("alt", "youtube");
                image.addEventListener("load", function () {
                    youtube[i].appendChild(image);
                }(i));

                youtube[i].addEventListener("click", function () {
                    var iframe = document.createElement("iframe");
                    iframe.setAttribute("frameborder", "0");
                    iframe.setAttribute("allowfullscreen", "");
                    iframe.setAttribute("src", "https://www.youtube.com/embed/" + this.dataset
                        .embed + "?rel=0&showinfo=0&autoplay=1");
                    this.innerHTML = "";
                    this.appendChild(iframe);
                });
            };
        }
    </script><script async src="//www.instagram.com/embed.js"></script>

You may also like

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Accept Read More

Privacy & Cookies Policy