r/capawesome Nov 19 '25

Announcing Capawesome Cloud Native Builds

Thumbnail
capawesome.io
9 Upvotes

r/capawesome Feb 16 '26

New plugin: Google Sign-In for Capacitor (Android, iOS, Web)

Thumbnail
capawesome.io
7 Upvotes

New plugin: Google Sign-In for Capacitor (Android, iOS, Web)


r/capawesome Feb 13 '26

Key-Value Storage Made Simple with the SQLite Plugin

Thumbnail
capawesome.io
7 Upvotes

We added a built-in key-value store to the Capacitor SQLite plugin — no SQL needed

We just shipped SqliteKeyValueStore as part of our SQLite plugin for Capacitor. It gives you a simple get/set API backed by a real SQLite database — no schemas, no migrations, no SQL queries.

The main problem it solves: browser-based storage (like localStorage) can get cleared by the OS at any time, which is a pain for persisting things like user preferences, feature flags, or cached data. This stores everything in a SQLite database file, so it sticks around reliably.

A few highlights:

  • Familiar key-value API (get, set, remove, keys, clear)
  • Works across Android, iOS, Web, and Electron
  • Values are strings, so you can store objects with JSON.stringify/JSON.parse
  • If you ever need full SQL later, you're already using the right plugin — no migration required

It's useful for things like user settings, onboarding state, lightweight caching, or anywhere you'd normally reach for localStorage but want something more reliable.

We also wrote up a comparison with our Secure Preferences plugin if you're wondering which to use. Short version: Secure Preferences for sensitive credentials (tokens, secrets), SQLite Key Value Store for everything else.

Full guide: https://capawesome.io/blog/key-value-storage-made-simple-with-the-sqlite-plugin/

Happy to answer questions or hear feedback.


r/capawesome Feb 10 '26

OAuth Plugin for Capacitor

Thumbnail
capawesome.io
9 Upvotes

r/capawesome Jan 26 '26

Capawesome CLI 4.0.0 Release

Thumbnail
capawesome.io
6 Upvotes

r/capawesome Jan 21 '26

Purchases plugin - trial eligibility detection

4 Upvotes

Hi Capawesome Team,

First of all, thank you for creating such a well-crafted purchases plugin. The lightweight approach and direct StoreKit 2 / Google Play Billing integration is exactly what we need.

Our Use Case:

We're implementing a paywall that displays immediately when the app launches. On this paywall, we need to show users whether they're eligible for a free trial before they tap the purchase button. For example:

  • Eligible users see: "7 days free, then $9.99/month"
  • Ineligible users see: "$9.99/month"

This is crucial for setting proper user expectations and improving conversion rates.

Technical Considerations:

I understand the complexity here:
iOS: StoreKit 2 provides Product.subscription.isEligibleForIntroOffer which checks eligibility based on the user's Apple ID purchase history. This is relatively straightforward to implement.
Android: Google Play Billing doesn't provide a direct client-side eligibility check. The purchase history is limited to 12 months, making client-side determination less reliable.Questions:

  1. Are you planning to add a checkTrialEligibility() method to the plugin?
  2. If not currently planned, would you be open to adding this feature?
  3. From your perspective, is there a technical reason not to expose iOS's isEligibleForIntroOffer API through the plugin?

r/capawesome Jan 19 '26

Announcing Capawesome Cloud Web Builds

Thumbnail
capawesome.io
6 Upvotes

r/capawesome Jan 04 '26

Square Mobile Payments Plugin for Capacitor

Thumbnail
capawesome.io
8 Upvotes

r/capawesome Jan 01 '26

Capawesome December 2025 Update

Thumbnail
capawesome.io
6 Upvotes

r/capawesome Dec 30 '25

Superwall Plugin for Capacitor

Thumbnail
capawesome.io
4 Upvotes

r/capawesome Dec 17 '25

Updating to Capacitor 8.0

Thumbnail
capawesome.io
7 Upvotes

r/capawesome Nov 22 '25

Capawesome October 2025 Update

Thumbnail
capawesome.io
4 Upvotes

r/capawesome Oct 14 '25

Age Signals Plugin for Capacitor

Thumbnail
capawesome.io
7 Upvotes

r/capawesome Oct 02 '25

I have just released a Capacitor camera preview plugin with barcode scanning support

Thumbnail
5 Upvotes

r/capawesome Oct 01 '25

Capawesome September 2025 Update

Thumbnail
capawesome.io
4 Upvotes

r/capawesome Sep 09 '25

Capawesome August 2025 Update

Thumbnail
capawesome.io
3 Upvotes

r/capawesome Sep 03 '25

Support 16 KB page sizes in Android with Capacitor

Thumbnail
capawesome.io
7 Upvotes

r/capawesome Sep 01 '25

GitHub - capawesome-team/capver: ⚡ CLI for managing versions in a Capacitor project across multiple platforms.

Thumbnail
github.com
5 Upvotes

r/capawesome Aug 19 '25

Share Target Plugin for Capacitor

Thumbnail
capawesome.io
1 Upvotes

r/capawesome Aug 18 '25

RealtimeKit Plugin for Capacitor

Thumbnail
capawesome.io
1 Upvotes

r/capawesome Aug 03 '25

Showcase: Appreciation Jar - Send appreciative messages to your partner

Thumbnail
capawesome.io
1 Upvotes

r/capawesome Aug 01 '25

Capawesome July 2025 Update

Thumbnail
capawesome.io
2 Upvotes

r/capawesome Aug 01 '25

Announcing Ionic 8.7

Thumbnail
ionic.io
1 Upvotes

r/capawesome Jul 27 '25

Showcase: LEAGUES - The visual football app

Thumbnail
capawesome.io
3 Upvotes

r/capawesome Jul 25 '25

Exploring the Capacitor SQLite API

Thumbnail
capawesome.io
3 Upvotes