cordova.apache.org

VN:F [1.9.22_1171]
Rating: 8.0/10 (1 vote cast)

Mobile apps with HTML, CSS & JS for Android & iOS.

Cordova Common 6.0.0 Released!

9 August 2025 @ 12:00 am

We are happy to announce that [email protected] has been released. This is one of the libraries used behind-the-scenes by nearly all of the Cordova tooling and provides utilities for dealing with things like config.xml parsing. Release Highlights The most notable changes in this major release were: Removal of superspawn, which also dropped the npm dependencies q and cross-spawn. Update to the <resource-file> directive to allow directories and their contents to be copied. Update to the <config-file> and <edit-config> directives to support finding unprefixed Info.plist files. Increase in the Node.js engine requirement to >=20.9.0. Changes include: Breaking Changes:

Cordova Android 14.0.1 Released!

30 April 2025 @ 12:00 am

We are happy to announce that we have just released Cordova Android 14.0.1! This is one of Cordova's supported platforms for building Android applications. [email protected] To upgrade: cordova platform remove android cordova platform add [email protected] To install: cordova platform add [email protected] Release Highlights Fixes Fetching Gradle Path for Windows Resolved an issue in Windows environments where projects containing spaces in their paths could not be built due to changes in how the Gradle path was fetched.

Cordova Android 14.0.0 Released!

26 March 2025 @ 12:00 am

We are happy to announce that we have just released Cordova Android 14.0.0! This is one of Cordova's supported platforms for building Android applications. [email protected] To upgrade: cordova platform remove android cordova platform add [email protected] To install: cordova platform add [email protected] Release Highlights BREAKING CHANGES Increased Target SDK This release has increased the target SDK to 35 (Android 15). Project Dependencies The following Gradle de

Media Capture Plugin 6.0.0 Released!

26 February 2025 @ 12:00 am

We are happy to announce that we have just released an update for cordova-plugin-media-capture! [email protected] To upgrade: cordova plugin remove cordova-plugin-media-capture cordova plugin add [email protected] Release Highlights This major release primarily focused on ensuring that the plugin complies with Android's new strict permission requirements. Specifically, it removes unnecessary permissions such as: android.permission.READ_EXTERNAL_STORAGE android.permission.WRITE_EXTERNAL_STORAGE android.permission.RECORD_AUDIO Additiona

Cordova Common 5.0.1 Released!

2 February 2025 @ 12:00 am

We are happy to announce that [email protected] has been released. This is one of the libraries used behind-the-scenes by nearly all of the Cordova tooling and provides utilities for dealing with things like config.xml parsing. Release Highlights The most notable changes in this patch release were updates to the dependencies used by this tool. Some dependencies were replaced with Node internals, reducing the overall dependency requirements. Changes include: Chores: GH-222 chore: bump npm dependencies to current minor revisions GH-217 chore(deps): bump cross-spawn from 7.0.3 to 7.0.6 GH-214 chore(deps): bump micromatch from 4.0.5 to 4.0.8

Cordova 2024 recap and plans for 2025 - Meetup recording

31 January 2025 @ 12:00 am

We kicked off 2025 with a very successful virtual meetup! Thank you to everyone who attended, and a huge thanks to Bryan Ellis (@erisu) for preparing and hosting the meeting. We had over 100 registrations and more than 60 attendees. The recording is available on YouTube, and you can find the slides here. Bryan provided a recap of 2024, summarizing Cordova releases and milestones, and shared some plans for the current year. As always, we can't provide exact timelines since our work is entirely volunteer-driven. However, if you’d like to help us achieve our goals, you can start contributing at any time! We also have plans for additional meetups to make contributing even more accessible. Stay tuned for more details!

Cordova needs you in 2025! Let's start with a meetup

8 January 2025 @ 12:00 am

The beginning of a new year is always a good opportunity for a project to reflect on the past year and make plans for the one ahead. As we wrapped up 2024, we had an idea that we’re excited to share: hosting another community meetup for Cordova. This meetup will be an excellent chance to recap the recent releases and highlight some upcoming tasks. 2024 saw some promising contributions from new developers, and we’ve noticed growing interest in our project. This makes the meetup the perfect time to onboard new contributors and strengthen our community. Without more committers, it will become increasingly challenging to maintain a steady release cycle and address the needs of our users. By bringing together experienced contributors and newcomers, we aim to foster collaboration and make future releases smoother. The release process is vital but can often feel overwhelming within the ASF framework. To address this, we are exploring ways to simplify it and provide clea

File Plugin 8.1.3 Released!

20 November 2024 @ 12:00 am

We are happy to announce that we have just released an update for cordova-plugin-file! [email protected] To upgrade: cordova plugin remove cordova-plugin-file cordova plugin add [email protected] Release Highlights This patch fixes an issue with FileEntry.toURL() on iOS devices when the app is hosted through schemes. The intent for this API is to produce a URL that can be used in the DOM, like image tags for example. However, iOS devices always produced file:// URIs which is not usable when the webview is configured to use schemes. Starting with 8.1.3, FileEntry.toURL() will produce an app-scheme URI if the iOS webview is configured to use app schemes, or a

Camera Plugin 8.0.0 Released!

2 November 2024 @ 12:00 am

We are happy to announce that we have just released a major update for cordova-plugin-camera! [email protected] To upgrade: cordova plugin remove cordova-plugin-camera cordova plugin add [email protected] Release Highlights This is a major update as it includes some breaking public API mechanisms, for the better! The breaking changes includes: getPicture URI Persistence Optional WRITE_EXTERNAL_STORAGE Additionally the allowEdit feature is now deprecated. See more details.

Cordova Lib 12.0.2 Released!

1 November 2024 @ 12:00 am

We are excited to announce the release of cordova-lib. [email protected] To upgrade: If Cordova CLI is installed globally: npm uninstall -g cordova npm install -g cordova@latest If Cordova CLI is installed locally within your project: npm uninstall cordova npm install cordova@latest Release Highlights In this patch release, we have introduced several fixes. The most notable changes are: Ability to install plugins on a prerelease version of a platform. Consistent plugin

ionicframework.com

VN:F [1.9.22_1171]
Rating: 8.0/10 (1 vote cast)

A HTML5 & Cordova mobile framework.

Announcing Ionic 8.7

31 July 2025 @ 9:22 pm

Ionic Framework 8.7 is here! This release delivers powerful new features that enhance developer productivity and user experience. From new CSS utility classes that streamline layout development to new Reorder events that provide fine-grained control, plus the latest Ionicons v8 update and Angular modal injection improvements, 8.7 brings the tools you need to create exceptional […] The post Announcing Ionic 8.7 appeared first on Ionic Blog.

The Quest for SSR with Web Components: A Stencil Developer’s Journey

25 June 2025 @ 4:54 am

Picture this: You’ve built a beautiful design system using Web Components. Your components are framework-agnostic, encapsulated, and performant. Life is good… until someone asks, “But does it work with SSR?” Record scratch. Freeze frame. That’s where our story begins. The Promise Land: SSR and Web Components Before we dive into the trenches, let’s set the […] The post The Quest for SSR with Web Components: A Stencil Developer’s Journey appeared first on Ionic Blog.

Announcing Ionic 8.6

4 June 2025 @ 6:26 pm

We’re thrilled to share the latest release of Ionic Framework, packed with exciting new features and improvements. This release brings a new Input OTP component, a new Datetime property to show days from the previous and next months, and a fresh update to Stencil. Let’s take a closer look at what’s new in 8.6 👇 […] The post Announcing Ionic 8.6 appeared first on Ionic Blog.

Cross-platform AR/VR With the Web: WebXR with A-Frame, Angular, and Capacitor (Part II)

12 May 2025 @ 9:14 pm

This is the second blog post in a multipart series. While it’s not necessary to read the first part it will definitely add some much needed context: Cross-platform AR/VR With the Web: WebXR with A-Frame, Angular, and Capacitor (Part I) Last year I covered a topic about incorporating WebXR into your Capacitor projects to create […] The post Cross-platform AR/VR With the Web: WebXR with A-Frame, Angular, and Capacitor (Part II) appeared first on Ionic Blog.

How Capacitor Works

17 April 2025 @ 4:29 pm

This blog post was originally written and published by Max Lynch on August 13th, 2020. This post has been edited as well as updated for content and links. Capacitor is a cross-platform native runtime for Web Native apps. Essentially, Capacitor takes modern web apps, and then packages them up to run on iOS, Android, and […] The post How Capacitor Works appeared first on Ionic Blog.

Stencil Reframed: Community-Driven Governance Takes Center Stage

8 April 2025 @ 9:28 pm

Stencil has become an essential tool for companies of all sizes who are building sustainable design systems. These design systems enable teams to deliver exceptional user experiences across multiple platforms, whether they’re building applications with React, Angular, or Vue. Today, I’d like to share some important updates about Stencil’s governance structure and future. A Brief […] The post Stencil Reframed: Community-Driven Governance Takes Center Stage appeared first on Ionic Blog.

Announcing Ionic 8.5

14 March 2025 @ 9:19 pm

We are excited to announce the release of Ionic 8.5, bringing valuable updates to form controls, modals, and framework customization. This release enhances components like Checkbox, Select, and Toggle with new validation features, improves Sheet Modals with better scrolling behavior, and adds more control over styling and error logging. With React 19 support and key […] The post Announcing Ionic 8.5 appeared first on Ionic Blog.

Unifying Plugins across Ionic and OutSystems

19 February 2025 @ 4:57 pm

One of the more exciting aspects of Ionic joining OutSystems was comparing our portfolios of supported plugins. Does Ionic provide functionality OutSystems is missing? Does OutSystems have plugins without a Capacitor equivalent? How do we bring the best of both worlds to OutSystems’ low-code and Ionic’s open-source communities? Some decisions were easy. For instance, Ionic […] The post Unifying Plugins across Ionic and OutSystems appeared first on Ionic Blog.

Coming soon! New updates & features for Ionic’s Open Source projects

18 February 2025 @ 6:31 pm

Hey everybody, it’s Matt from the Ionic team! 👋 I know it’s been a while and I am excited to be reaching out and tell you about some of the exciting open source features we’ve been working on behind the scenes. Me and the leaders of the open source teams will be posting a lot […] The post Coming soon! New updates & features for Ionic’s Open Source projects appeared first on Ionic Blog.

Important Announcement: The Future of Ionic’s Commercial Products

11 February 2025 @ 4:00 pm

When Max Lynch, Ben Sperry, and the earliest team members first started Ionic back in 2012, they had a simple mission: to help web developers deliver great mobile experiences using the skills they already had. There wasn’t a grand plan to build a commercial business, just a shared passion for empowering developers with great tools, […] The post Important Announcement: The Future of Ionic’s Commercial Products appeared first on Ionic Blog.

gsmarena.com

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

Resource for GSM mobile handset news and information

Samsung Galaxy S26 Ultra may have a huge camera island just like the iPhone 17 Pro

26 August 2025 @ 3:54 pm

Ever since the Galaxy S22 Ultra, Samsung's Ultra phones have had the same design for their cameras on the back - individual circle-islands for each sensor. This, however, may change next year. According to a new report from Samsung's home of Korea, the upcoming Galaxy S26 Ultra may adopt a monolithic camera island once more, last seen on the Galaxy S21 Ultra from 2021. Samsung Galaxy S25 Ultra The reason for this change is all about being able to fit better cameras into the body of the phone, apparently. And yet, we can't help but wonder whether the Korean company is once again...

Honor 500 series specs surface online, to launch as early as this year

26 August 2025 @ 2:56 pm

Honor's schedule seems very busy this year. In addition to the Honor Magic8 series, the company is getting ready to announce the Honor 500 series as well. According to Digital Chat Station on Weibo, the Chinese phone manufacturer will likely release the Honor 500 duo (assuming there will be just two phones as usual) by the end of this year in China. Additionally, the tipster assures that Honor won't be changing the formula and the Honor 500 and Honor 500 Pro will continue to be camera-centric handsets, with a lightweight design and 6.5-inch displays. The main camera will retain the...

RedMagic 11 Pro with Snapdragon 8 Gen Elite 2 benchmarked ahead of launch

26 August 2025 @ 1:57 pm

The upcoming Snapdragon 8 Gen Elite 2 chipset is set to debut next month, but it leaked in yet another Geekbench listing. Qualcomm’s flagship SoC was seen powering the RedMagic 11 Pro (nubia NX809J), revealing another look at the raw power housed inside the chip. It features an eight-core CPU with 2x prime cores clocked at 4.19GHz and 6x performance cores running at 3.63GHz. The prime cores appear to be underclocked from the 4.74 GHz values seen in a previous test run, which is standard procedure for yet-to-be-released hardware. RedMagic 11 Pro (NX809J) Geekbench...

vivo X300 Pro to use improved Sony and Samsung sensors

26 August 2025 @ 12:59 pm

The vivo X300 series is expected in a few months. Ahead of any official details from vivo, there are some new details available regarding the camera sensors that will be used in the upcoming flagship X300 series phones. According to tipsters, vivo has confirmed that it will be using improved camera sensors in the next generation phones. It’s likely that the company is talking about the vivo X300 series. While not a lot of details are known, vivo revealed that it would use a 50 MP Sony LYT-828 primary rear sensor and a new 200 MP sensor from Samsung. The X300 Pro is expected to use...

iQOO 15 Mini is coming to compete with the OnePlus 15T/15s, here's when

26 August 2025 @ 12:01 pm

Earlier this year OnePlus launched the 13T in China and the 13s in other markets as a smaller high-end device to complement its all-out flagship, the 13, and its 'flagship-killer' type device, the 13R. Now it seems like other brands have been inspired by OnePlus to do a similar thing. Case in point: iQOO is now rumored to come out with a 15 Mini next year, complementing the upcoming iQOO 15 and iQOO 15 Ultra. iQOO 13 The iQOO 15 Mini, like the OnePlus 15T/15s, will have a 6.3"-ish, flat screen with average bezel size and an embedded ultrasonic fingerprint sensor. Both phones will...

vivo V60 launches internationally, starting with Malaysia, Taiwan and Vietnam

26 August 2025 @ 11:01 am

The vivo V60 was announced in early August, initially for the Indian market. Now, the camera-focused V-phone is starting its global rollout with launches in Malaysia, Taiwan and Vietnam. In Malaysia, the 8/256GB model is already available in Berry Purple and Mist Gray for MYR 1,850 ($440). The other storage options are not available. vivo V60 in: Berry Purple • Mist Gray • Ocean Blue In Taiwan and Vietnam, the phone isn’t available just yet. In Vietnam, it’s just ending its pre-order period, but the store hasn’t updated yet – you can check again later today. Let’s do a...

vivo T4 Pro unveiled: Snapdragon 7 Gen 4 SoC, 50MP periscope camera, and 6,500 mAh battery

26 August 2025 @ 10:02 am

As promised, vivo today unveiled the vivo T4 Pro. It's the sixth member of vivo's T4 lineup, which was believed to be a rebranded vivo V60 after vivo confirmed a few specs of the T4 Pro and revealed its design, but that's not the case. Like the vivo V60, the vivo T4 Pro is also powered by the Snapdragon 7 Gen 4 SoC, features a 6.77" FullHD+ 120Hz quad-curved AMOLED display with 5,000 nits peak brightness, and packs a 6,500 mAh Si/C battery having 90W charging support. The smartphone's design is also similar, whereas the weight and dimensions are identical to the V60's Mist Gray model....

Huawei’s latest server chip is built on TSMC’s 5nm process

26 August 2025 @ 9:07 am

Huawei’s latest server chip – the Kunpeng 930 is built on TSMC’s 5nm architecture. The finding was revealed in a teardown video by @Kurnalsalts who shared a video of the process. The new chip should offer nearly 2x performance jump over its predecessor, though it is still a few generations away from the latest generation of Intel and AMD offerings. Huawei Kunpeng 930 teardown Kunpeng 930 features a CPU fabbed on TSMC’s N5 process while the I/O die is presumably SMIC’s 14nm process. The 77.5mm x 58.0mm chip features a dual-socket motherboard including a Mount TaiShan CPU...

QCY introduces MeloBuds N70 with 10mm drivers, custom tweeters, and powerful ANC

26 August 2025 @ 7:00 am

Some of you may not have heard of QCY, but it's a credible name in the TWS audio market, brings in-house R&D, and has some advanced audio technology on hand. Its latest truly wireless earbud, the MeloBuds N70, is here with powerful adaptive noise cancellation, and a price of just $60. The QCY MeloBuds N70 brings a 10mm liquid silicone dynamic driver mated to a MEMS tweeter. The custom tweeter has a frequency response of 20Hz to 40 kHz, and dual acoustic guide tubes to reduce resonance. QCY reckons that the driver and tweeter combo will bring rich bass, articulate highs, and a...

Realme to showcase prototype 15,000 mAh phone at 828 Fan festival

26 August 2025 @ 6:40 am

Ahead of the Realme 828 fan festival tomorrow, the Chinese manufacturer has confirmed the battery capacity of its upcoming prototype smartphone. Last week, Realme teased that it would showcase a phone with a battery larger than 10,000mAh. In a teaser shared on social media, Realme teased that its upcoming prototype phone will pack a 15,000 mAh battery. Realme claims the phone can record up to 18.45 hours of video, deliver as much as 50 hours of video playback, and last up to 5.18 days with regular use on a single charge. No other details of the phone have been revealed, however,...

htcdev.com

VN:F [1.9.22_1171]
Rating: 5.0/10 (1 vote cast)

HTC dev for rooting and upgrading your HTC mobile

android.com

VN:F [1.9.22_1171]
Rating: 6.0/10 (4 votes cast)

The source of android – operating system for mobiles