برچسب: New

  • On TikTok, Chinese Manufacturers Open a New Line in the Trade War

    On TikTok, Chinese Manufacturers Open a New Line in the Trade War


    Chinese manufacturers are flooding TikTok and other social media apps with direct appeals to American shoppers, urging people to buy luxury items straight from their factories. And amid the threats of sky-high tariffs on Chinese exports, Americans seem to be all in.

    The pitch in the videos is that people can buy leggings and handbags exactly like those from brands like Lululemon, Hermes and Birkenstock, but for a fraction of the price. They claim, often falsely, that the products are made in the same factories that produce items for those brands.

    American influencers have embraced the videos, promoting the factories and driving downloads of Chinese shopping apps like DHGate and Taobao as a way for shoppers to save money if the price of goods skyrockets under President Trump’s tariffs on Chinese imports. DHGate was among the 10 most downloaded apps in Apple’s and Google’s app stores last week.

    The videos are surging in popularity on TikTok and Instagram, racking up millions of views and thousands of likes. Many of the posts also seem to have elicited Americans’ sympathy for China in comments, such as “Trump bullied the wrong country” and “China won this war.”

    The videos offer a rare outlet for Chinese factory owners and workers to speak directly to American consumers through social media apps that are technically banned in China. And their popularity in America highlights increasingly vocal support for China on social media, similar to the outcry over the federal government’s potential ban of TikTok.

    “It’s activating people politically in a similar way that you saw when we were going to cancel TikTok, but this time in the context of tariffs and the overall relationship with the two countries,” said Matt Pearl, a director who focuses on technology issues at the Center for Strategic and International Studies. “It does demonstrate their ability to communicate with American consumers to drive a message about our dependence on Chinese goods.”

    Mr. Pearl suggested that the Chinese government might be allowing the videos to proliferate, since it has otherwise tended to discourage its citizens from posting videos that infringe on trademarked products from Western countries.

    The Chinese Embassy in Washington and the Chinese Consulate in New York did not return requests for comment.

    The volume of TikTok videos urging users to source products directly from Chinese factories soared almost 250 percent during the week of April 13, according to Margot Hardy, an analyst at Graphika, a social network analysis firm. On TikTok, the hashtag #ChineseFactory had 29,500 posts on April 23; on Instagram, it had 27,300 posts.

    Retail experts — and vendors in China — say it’s unlikely that the most viral videos, which claim to be manufacturers for brands like Lululemon and Hermes, are peddling authentic products from those labels. Those factories often sign strict nondisclosure agreements and are unlikely to destroy their long-term relationships with major brands in exchange for hawking a few goods through direct sales, said Sucharita Kodali, a retail analyst at Forrester.

    The Chinese government appears to be allowing the videos to proliferate, she said.

    “A Lululemon or Chanel’s interests right now in China are probably No. 100 on the list of things that the Chinese trade minister and officials there are concerned about,” Ms. Kodali said. Manufacturers may also be rushing to close sales before new tariffs on May 2 add hefty fees to parcel shipments from China, she said.

    Still, questions around the veracity of the goods aren’t stopping demand.

    Elizabeth Henzie, a 23-year-old in Mooresville, N.C., said she found the manufacturing costs and retail prices described in the videos eye-opening. She made a spreadsheet of factories that claim they are selling dupes of sneakers, luxury bags and more, and linked it in her TikTok profile. That post has attracted more than one million views.

    Ms. Henzie is now working as an affiliate partner for DHGate, where she will receive free products from the company for review videos and a commission if people make a purchase through her links. She said she believed that people in China were ultimately trying to help Americans.

    “Seeing how other countries are coming together to try to help American consumers has boosted my morale,” Ms. Henzie said. “Even though it’s a negative thing that’s going on in America, I think it’s also pushing us to come together.”

    TikTok, which is owned by the Chinese company ByteDance, has been taking down some of the videos, pointing to a policy that prohibits the promotion of counterfeit goods. But many have persisted through reposts. Even older videos about Chinese manufacturing are spreading in personalized news feeds amid major interest in the tariffs. TikTok declined to comment further, and Instagram, which is owned by Meta, declined to comment on the videos.

    Sellers in China say they started posting the videos when sales fell. Yu Qiule, the 36-year-old co-owner of a manufacturing company in Shandong Province in eastern China that makes fitness equipment, said he started posting to TikTok in mid-March to find more customers after the tariffs prompted a wave of canceled orders.

    Louis Lv, the general manager of export at Hongye Jewelry Factory in Yiwu, in Zhejiang Province, said his firm started posting on TikTok at the end of 2024, driven by a slowdown in domestic sales.

    But he has watched the viewership in his TikTok videos soar since the Trump administration announced the tariffs. “The philosophy of Chinese businessmen is we will go wherever the business is,” he said in an interview.

    In one of the most popular TikTok videos, a man is holding what he says is a Hermes Birkin bag while claiming to share its production costs from a factory. (The original video and account have been removed, but versions of the video are still widely circulating through reposts from other users.) He says that the purse costs less than $1,400 to manufacture but that the French luxury retailer sells it for $38,000 solely for the label. The man claimed that he used the same leather and same hardware to replicate the handbags without the logo, offering them for $1,000.

    A spokesman for Hermes said its bags “were 100 percent made in France,” and declined to comment further. A spokeswoman for Birkenstock said that the videos showed “knockoffs” and that its footwear was engineered and produced in the European Union. The company said that it had contacted TikTok and that initial videos were deleted on April 15.

    Lululemon, which has also been the target of viral TikTok videos from manufacturers who claim to sell its leggings for just $5, said it had been in touch with TikTok to remove false claims. Lululemon said in an emailed statement that it didn’t work with the manufacturers in the videos and warned consumers to be aware of potentially counterfeit products and misinformation.

    Vanessa Friedman and Isabelle Qian contributed reporting from New York.



    Source link

  • What’s new in the Jetpack Compose April ’25 release



    Posted by Jolanda Verhoef – Developer Relations Engineer

    Today, as part of the Compose April ‘25 Bill of Materials, we’re releasing version 1.8 of Jetpack Compose, Android’s modern, native UI toolkit, used by many developers. This release contains new features like autofill, various text improvements, visibility tracking, and new ways to animate a composable’s size and location. It also stabilizes many experimental APIs and fixes a number of bugs.

    To use today’s release, upgrade your Compose BOM version to 2025.04.01 :

    implementation(platform("androidx.compose:compose-bom:2025.04.01"))
    

    Note: If you are not using the Bill of Materials, make sure to upgrade Compose Foundation and Compose UI at the same time. Otherwise, autofill will not work correctly.

    Autofill

    Autofill is a service that simplifies data entry. It enables users to fill out forms, login screens, and checkout processes without manually typing in every detail. Now, you can integrate this functionality into your Compose applications.

    Setting up Autofill in your Compose text fields is straightforward:

    TextField(
      state = rememberTextFieldState(),
      modifier = Modifier.semantics {
        contentType = ContentType.Username 
      }
    )
    

    For full details on how to implement autofill in your application, see the Autofill in Compose documentation.

    Text

    When placing text inside a container, you can now use the autoSize parameter in BasicText to let the text size automatically adapt to the container size:

    Box {
        BasicText(
            text = "Hello World",
            maxLines = 1,
            autoSize = TextAutoSize.StepBased()
        )
    }
    

    moving image of Hello World text inside a container

    You can customize sizing by setting a minimum and/or maximum font size and define a step size. Compose Foundation 1.8 contains this new BasicText overload, with Material 1.4 to follow soon with an updated Text overload.

    Furthermore, Compose 1.8 enhances text overflow handling with new TextOverflow.StartEllipsis or TextOverflow.MiddleEllipsis options, which allow you to display ellipses at the beginning or middle of a text line.

    val text = "This is a long text that will overflow"
    Column(Modifier.width(200.dp)) {
      Text(text, maxLines = 1, overflow = TextOverflow.Ellipsis)
      Text(text, maxLines = 1, overflow = TextOverflow.StartEllipsis)
      Text(text, maxLines = 1, overflow = TextOverflow.MiddleEllipsis)
    }
    

    text overflow handling displaying ellipses at the beginning and middle of a text line

    And finally, we’re expanding support for HTML formatting in AnnotatedString, with the addition of bulleted lists:

    Text(
      AnnotatedString.fromHtml(
        """
        <h1>HTML content</h1>
        <ul>
          <li>Hello,</li>
          <li>World</li>
        </ul>
        """.trimIndent()
      )
    )
    

    a bulleted list of two items

    Visibility tracking

    Compose UI 1.8 introduces a new modifier: onLayoutRectChanged. This API solves many use cases that the existing onGloballyPositioned modifier does; however, it does so with much less overhead. The onLayoutRectChanged modifier can debounce and throttle the callback per what the use case demands, which helps with performance when it’s added onto an item in LazyColumn or LazyRow.

    This new API unlocks features that depend on a composable’s visibility on screen. Compose 1.9 will add higher-level abstractions to this low-level API to simplify common use cases.

    Animate composable bounds

    Last year we introduced shared element transitions, which smoothly animate content in your apps. The 1.8 Animation module graduates LookaheadScope to stable, includes numerous performance and stability improvements, and includes a new modifier, animateBounds. When used inside a LookaheadScope, this modifier automatically animates its composable’s size and position on screen, when those change:

    Box(
      Modifier
        .width(if(expanded) 180.dp else 110.dp)
        .offset(x = if (expanded) 0.dp else 100.dp)
        .animateBounds(lookaheadScope = this@LookaheadScope)
        .background(Color.LightGray, shape = RoundedCornerShape(12.dp))
        .height(50.dp)
    ) {
      Text("Layout Content", Modifier.align(Alignment.Center))
    }
    

    a moving image depicting animate composable bounds

    Increased API stability

    Jetpack Compose has utilized @Experimental annotations to mark APIs that are liable to change across releases, for features that require more than a library’s alpha period to stabilize. We have heard your feedback that a number of features have been marked as experimental for some time with no changes, contributing to a sense of instability. We are actively looking at stabilizing existing experimental APIs—in the UI and Foundation modules, we have reduced the experimental APIs from 172 in the 1.7 release to 70 in the 1.8 release. We plan to continue this stabilization trend across modules in future releases.

    Deprecation of contextual flow rows and columns

    As part of the work to reduce experimental annotations, we identified APIs added in recent releases that are less than optimal solutions for their use cases. This has led to the decision to deprecate the experimental ContextualFlowRow and ContextualFlowColumn APIs, added in Foundation 1.7. If you need the deprecated functionality, our recommendation for now is to copy over the implementation and adapt it as needed, while we work on a plan for future components that can cover these functionalities better.

    The related APIs FlowRow and FlowColumn are now stable; however, the new overflow parameter that was added in the last release is now deprecated.

    Improvements and fixes for core features

    In response to developer feedback, we have shipped some particularly in-demand features and bug fixes in our core libraries:

      • Make dialogs go edge to edge: When displayed full screen, dialogs now take into account the full size of the screen and will draw behind system bars.

    Get started!

    We’re grateful for all of the bug reports and feature requests submitted to our issue tracker – they help us to improve Compose and build the APIs you need. Continue providing your feedback, and help us make Compose better.

    Happy composing!



    Source link

  • A new OnePlus tablet just cleared the FCC, but it’s not the one we were expecting

    A new OnePlus tablet just cleared the FCC, but it’s not the one we were expecting


    OnePlus Pad 2 keyboard case

    Ryan Whitwam / Android Authority

    The OnePlus Pad 2 with its keyboard cover and stylus

    TL;DR

    • A new OnePlus tablet has been spotted in an FCC listing, labeled as the OnePlus Pad 3R.
    • The listing doesn’t reveal much about the tablet’s hardware specs.
    • A new OnePlus Pencil was also filed alongside it, and both products could launch soon.

    For the past few weeks, rumors have been swirling about a new high-end OnePlus tablet. Most signs pointed to it being a follow-up to last year’s OnePlus Pad 2 — possibly a “Pad 2 Pro” with flagship-tier specs. But now, a fresh FCC filing suggests OnePlus might be heading in a different direction entirely.

    As first reported by Droid Life, a new OnePlus device has appeared in the FCC database under the model number OPD2408. The listing identifies it as a tablet and includes a label that clearly names it the “OnePlus Pad 3R.” Also appearing in the FCC database is a new stylus under model number OPN2405, officially named the “OnePlus Pencil.”

    The FCC documents mention support for dual-band Wi-Fi, Bluetooth, and wireless power transfer (WPT) on the tablet, though it’s unclear whether that last bit means we’re getting actual wireless charging. That’s still a rare feature on tablets, so it’s best to stay skeptical for now. The device is described as working in both standalone and keyboard-laptop modes, and the hardware/software builds are listed as OPD2408_11 and OPD2408_15.0.0.61, respectively.

    That’s about all the FCC confirms on paper, but it’s what’s missing that makes things interesting. Prior leaks about this device hinted at a powerful tablet, possibly a rebadged version of the OPPO Pad 4 Pro, which was launched in China.

    That model features a 13.2-inch 3K+ display, Snapdragon 8 Elite chip, up to 16GB of RAM, and a massive 12,140mAh battery. OnePlus often mirrors OPPO’s hardware under a different name, so expectations were set for something similar, if not identical.

    So, where does the “Pad 3R” name come into play? That’s where things get a bit confusing. In the phone lineup, OnePlus typically reserves the “R” moniker for slightly trimmed-down, mid-range versions of its flagship devices, such as the OnePlus 13R compared to the full-fledged OnePlus 13.

    But if this is truly the tablet with all those rumored high-end specs, branding it as “3R” instead of “2 Pro” suggests OnePlus might be rethinking how it positions its tablets.

    Still, all we know for sure is that a new tablet, possibly called the OnePlus Pad 3R, is on the way. And with both the tablet and stylus now clearing the FCC, it might not be long before we see an official announcement.

    Got a tip? Talk to us! Email our staff at news@androidauthority.com. You can stay anonymous or get credit for the info, it’s your choice.



    Source link

  • New Star GP Is Retro Racing Perfection

    New Star GP Is Retro Racing Perfection


    And in New Star GP, you’ll jump into the world of arcade racing. Anyone who enjoyed racing games of the 1990s will sure to enjoy the new game.

    You’ll take control of your own motorsport team to guide the technological development, plan race strategy, and drive to victory from the 1980s all the way to today.

    While anyone can pick up and start driving with simple controls, there are multiple layers of driving to manage. Some of those include tire choice and wear, component reliability, fuel load, and pit strategy.

    Just like any good racing game, you can speed around events all around the world in some iconic locations. The visuals and soundtrack are absolutely perfect and a true blast from the past.

    New Star GP is a free download now on the App Store for the iPhone and all iPad models. There are in-app purchases available.

    I’ve just started racing, but New Star GP is fantastic. As a big fan of retro games, this is another great way to go back in time.



    Source link

  • AdMob’s new reporting delivers better insights

    AdMob’s new reporting delivers better insights


    Easy comparison reporting

    When looking at changes to a single AdMob metric, such as revenue, we know that context is key. So we’ve added the ability for you to compare two metrics within the same chart (see upper right in image below) so that you can more easily correlate trends within your data.

    You can also now break out metrics, such as estimated earnings, by dimensions like app, ad unit, format, and country (see upper left in image below).  Our improved graph interactivity allows you to add or remove dimensions by simply clicking on the corresponding circle in the key, as shown below on the upper left.



    Source link

  • Upgrade your banner ads with new adaptive anchor banners

    Upgrade your banner ads with new adaptive anchor banners


    Getting started with adaptive anchor banners

    Adaptive anchor banners are a great option for AdMob publishers who want the simplest solution to getting the best banner ad returned across any device.  This format is still in beta on Google Ad Manager, so publishers who want to try it out on that platform should reach out to their account managers or contact our support team.

    Adaptive anchor banners are currently only available for anchored placements—banners locked to the top or bottom of the screen. However, AdMob is actively developing another adaptive algorithm for in-line banners placed in scroll views or within content.

    To get started with adaptive anchor banners for AdMob, check out our implementation guides (iOS, Android). We walk you through when it’s appropriate to use adaptive banners, implementation notes, and code examples.

    We recommend testing adaptive banners against some of your existing banner ads to understand how they can help you maximize fill rates, engagement, and revenue.



    Source link

  • Apple Releases iOS/iPadOS 18.4 With Priority Notifications, New Emoji and More

    Apple Releases iOS/iPadOS 18.4 With Priority Notifications, New Emoji and More


    You can download the iOS/iPad 18.3 update by going to Settings > General > Software Update on your iPhone or iPad.

    A highlight of the update is the addition of Priority Notifications to Apple Intelligence. That will place notifications that might need your immediate attention on top and more visible.

    Eight new emojis have also been added: face with bags under eyes, fingerprint, leafless tree, root vegetable, harp, shovel, splatter, and the Flag of Sark.

    Apple Intelligence (All iPhone 16 models, iPhone 15 Pro, iPhone 15 Pro Max)
    – Priority notifications appear at the top of your notifications, highlighting important notifications that may require your immediate attention
    – Sketch is now available as an additional style option in Image Playground, allowing you to create gorgeous sketch drawings
    – Apple Intelligence features support 8 additional languages and 2 additional English locales, including English (India, Singapore), French (France, Canada), German (Germany), Italian (Italy), Japanese (Japan), Korean (South Korea), Portuguese (Brazil), Simplified Chinese, and Spanish (Spain, Latin America, US)

    Apple Vision Pro App
    – The new Apple Vision Pro app, automatically installed for users with Apple Vision Pro, helps you discover new content, spatial experiences, and quickly access information about your device

    Apple News+
    – Recipes from some of the world’s best recipe publishers are now available on Apple News+
    – Recipe Catalog allows you to browse or search to find the perfect dish and save it to your Saved Recipes
    – Cooking mode lets you easily follow step-by-step directions
    – The Food section also includes stories about restaurants, kitchen tips, healthy eating, and more

    Photos
    – New filters to show or hide items that are not contained in an album, or synced from a Mac or PC, in the Library view in Photos
    – Reorder items in the Media Types and Utilities collections in Photos
    – Consistent filtering options in all collections, including the ability to sort by oldest or newest first in Photos
    – Option to sort albums by Date Modified in Photos
    – Ability to disable “Recently Viewed” and “Recently Shared” collections in Photos Settings
    – Hidden photos are no longer included for import to Mac or a PC if Use Face ID is enabled in Photos settings

    This update also includes the following enhancements and bug fixes:
    – Safari recent search suggestions help you quickly get back to previous search topics when starting a new query
    – Setup Assistant streamlines steps parents need to take to create a Child Account for a kid in their family, and enables child-appropriate default settings if parents prefer to complete setting up a Child Account later
    – Screen Time App Limits persist even after a child uninstalls and reinstalls an app
    – App Store includes summaries for user reviews so you can get helpful insights from other users at a glance
    – Pause and resume of an app download or update on App Store without losing progress
    – New widgets for Podcasts including a Followed Shows widget to track your favorite shows and a Library widget to get to your most used sections, such as Latest Episodes, Saved, and Downloaded
    – Ambient Music offers the ability to instantly play music from Control Center, giving access to a set of hand-curated playlists that offer soundtracks for daily life
    – Apple Fitness+ Collections can now be added to Library
    – Matter-compatible robot vacuum cleaners can be controlled in the Home app as well as be added to scenes and automations
    – Support for 10 new system languages including Bangla, Gujarati, Kannada, Malayalam, Marathi, Odia, Punjabi, Tamil, Telugu, and Urdu

    Some features may not be available for all regions or on all Apple devices. For information on the security content of Apple software updates, please visit:
    https://support.apple.com/100100



    Source link

  • Grow your games business with new ads solutions

    Grow your games business with new ads solutions


    Maximize your ad revenue

    To help you get the most value from your ads, Open Bidding will be available as a beta to all AdMob developers this fall. Today, many developers rely solely on waterfall mediation, a tried-and-true way to monetize with multiple advertising sources that can be hard to set up and manage at scale. Waterfall mediation calls ad networks one at a time until one of them returns an ad. Though effective, you could be losing out on additional revenue since networks are prioritized based on historical CPMs, rather than real-time pricing.

    As Google’s in-app bidding solution, Open Bidding puts participating networks in a fair real-time auction to compete for your impressions, so the winner is always the highest paying network. This means you’ll get the highest revenue available for every impression. With Open Bidding, you can find the most popular demand sources to compete for your impressions in real time. Open Bidding makes earning more even easier by eliminating the need to manually set CPMs and reducing the number of SDKs your teams need to integrate and manage. 



    Source link

  • Best New Apps of March 2025

    Best New Apps of March 2025


    It’s time to take a look at the best new apps arriving in March.

    Our choices include a simple way get back free time and an easy-to-use flight tracker.

    Take a look at the entire list here.



    Source link

  • Best New Games of March 2025

    Best New Games of March 2025


    The year keeps marching on. And a number of great games continued to land on the App Store last month.

    Our top choice is a bloody good console game making its way to the App Store.

    Make sure to see our entire list here.



    Source link