Maximum Efficiency: A Primer on Capacitor

Rate this content
Bookmark

Quick, what is the quickest way to bring your product to the app stores? In today's landscape, trying to get into the app store can mean spending weeks deciding what tool to use and then rewriting your entire app. But the web, and mainly Capacitor, can simplify that. Take your existing web app, add Capacitor to the mix, and you have a native app that's ready for the stores! Let's see what's possible Capacitor and why it can help you ship faster.

12 min
05 Jun, 2023

Comments

Sign in or register to post your comment.

Video Summary and Transcription

Building an app can be challenging, but Capacitor allows code sharing across web, iOS, and Android. Packaging an app involves configuring plugins and modifying the project in Xcode. The app can be deployed to an iPhone and access typical dev servers.

Available in Español

1. Introduction to App Building and Capacitor

Short description:

Building an app can be surprisingly challenging. You have to learn the tools and programs, scaffold the app, build the UI, and handle different device sizes and types. Cross-platform solutions can help, but some are limited. Capacitor allows sharing code across web, iOS, and Android by packaging the web app in a native shell.

So, hello. I didn't expect to see you all here. We're—if I'm here, that means we're probably building an app, right? Now, have you ever actually gone ahead and built an app? It's surprisingly challenging. Not only do you have to learn the tools and programs to actually go ahead and build the app, then you've got to go ahead and start scaffolding out the app, figuring out where all your data's coming from, actually build out some of the UI, and then you have to go ahead and build out more UI.

Sometimes some UI is contextual. Sometimes it's only going to be shown on certain device sizes. Sometimes it's only going to be shown on certain device types. You have to build the UI again. Then you have to build some more UI. Even though you are building for mobile, sometimes we have larger form factors, like a tablet that needs adjusted UI to fit that scale and that dimensions that our users are used to working with.

Now, imagine doing this once. Challenges arise. We now need to go ahead and do this two additional times to make three UI designs for our users. This is not ideal. All these platforms, whether it's iOS, Android, and the web, have their own common design patterns and their own tools and techniques for building out an app. There are ways to alleviate this. We could go ahead and use a popular cross-platform solution. The only problem is that some cross-platform solutions are not as cross-platform as they advertise. For instance, some of the ones that people are probably familiar with only focus more or less on iOS and Android. The web, it's kind of an afterthought, and even then, it's still a limited version of the web, not being able to use existing libraries that you may know and love, for the fact that it now needs to exist in this kind of weird pseudo-web context, but also be able to run in native. It's not ideal. The more ideal solution would be have something where you could have your web code, your iOS code, and your Android code, all coexisting and being able to share the components across all of them. I'm here. I'm probably going to be talking about it. So we're going to be talking about Capacitor, which is the cross-platform solution which allows us to share all of our code across all the platforms.

Now how this works is a fascinating technical deep dive, but to kind of summarize it, Capacitor works by taking your existing web app and packaging it up in this native shell. Now this native shell has access to all of the same native features that any of the other cross-platform solutions have, but also allows you to integrate with the native device features and third-party SDKs pretty seamlessly. So if you're deploying to iOS, you can access the native SDKs available there, same way with Android. And on the web, we're able to provide either a fallback or utilize JavaScript SDKs that exist there. Now, the way this is done is through a very complex kind of solution of parsing out JavaScript code, passing it to a native runtime, but that is kind of beyond the point.

2. Packaging and Configuring the App

Short description:

The APIs that you use to target the status bar or the launch image are all done through a unified API. Let's see a real example of packaging an app as an iOS app. Install the necessary packages, create a new capacitor config file, and configure plugins. Add the native platforms and open the iOS project in Xcode. We can modify the project, extend it with a custom third-party view, and mix native and web elements.

The real point is that this is all provided to you through a very simplified TypeScript API. The APIs that you use to say, target the status bar or the launch image are all done through a unified API. So that way, you're not having to deal with the complexities of how is this done in iOS? How is this done on Android? And how is this done on the web?

Now this is all well and good, but let's actually go ahead and see a real example here. So this is an app that I've been working on for a little bit. It is a blue sky client and alternative to Twitter these days. And I want to go ahead and package this up and ship it as an iOS app.

Well, there's a few ways that we can do this. First and foremost, we want to go ahead and install the necessary packages. So we're going to install at capacitor core and at capacitor CLI. This will give us access to the core runtime as well as the CLI needed to execute further commands. Now this I've already installed. So we're not having to wait for npm here, but then we can go ahead and run npx cat init. This is going to go ahead and create us a new capacitor config file, which will be our basis for configuring all of the native projects. In fact, let's take a look at what that looks like. Now, this is just a TypeScript file. You can see we are exporting this config. It has the app ID, the app name, the directory where it should be pulling in your web app and then some server information here and there for how to configure the native projects. In fact, we can go ahead and configure plugins here as well. So that way, if we wanted to just hardcode some information to a plugin, we can do it before it even has to access the native code.

So with this installed, we can then run and add the native platforms. In this case, let's install at Capacitor iOS and at Capacitor Android. So go ahead and like previous commands, install the native packages that we need from here and then we can run npx cap add iOS. Now I've already done this. So let's go ahead and just open up an iOS project. We'll run npx cap open iOS and here we are inside of Xcode. Don't be too intimidated. You can see that we have a native AppDelegate.Swift where we can take a look at some Swift code. If we want to modify this project, we can take a look at the web assets that we have going on here, our launch screen, some of our asset catalogs, and then the main storyboard for actually presenting the app. So if we want to, say, go ahead and extend this with a custom third-party view, we can do that as well and kind of mix and blend what is native and what is web. But for most of our cases, this is just a simple app.

3. Running and Deploying the App

Short description:

We can deploy the app to an iPhone 14 Pro Max and have access to our typical dev servers that we use in the browser.

Let's go ahead and run this. We'll go ahead and we'll hit the play button, which is our way of building and employing. It's going to deploy to an iPhone 14 Pro Max. We'll give it a little second right here. And here we are. We have the iPhone 14 booting up, but let's go ahead and log in. Then we'll sign in and then we have our app. But we know that there's something different going on here. Good thing is, is that because this is still using a web app at the end of the day, we have access to all of our typical dev servers that we're used to doing in the browser.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

React Advanced Conference 2023React Advanced Conference 2023
29 min
Raising the Bar: Our Journey Making React Native a Preferred Choice
At Microsoft, we're committed to providing our teams with the best tools and technologies to build high-quality mobile applications. React Native has long been a preferred choice for its high performance and great user experience, but getting stakeholders on board can be a challenge. In this talk, we will share our journey of making React Native a preferred choice for stakeholders who prioritize ease of integration and developer experience. We'll discuss the specific strategies we used to achieve our goal and the results we achieved.
React Finland 2021React Finland 2021
27 min
Opensource Documentation—Tales from React and React Native
Documentation is often your community's first point of contact with your project and their daily companion at work. So why is documentation the last thing that gets done, and how can we do it better? This talk shares how important documentation is for React and React Native and how you can invest in or contribute to making your favourite project's docs to build a thriving community
React Day Berlin 2023React Day Berlin 2023
29 min
Bringing React Server Components to React Native
Top Content
React Server Components are new topic in community, bunch of frameworks are implementing them, people are discussing around this topic. But what if we could use React Server Components in React Native? And bring all optimisation features that RSC allows to mobile apps? In this talk I would present what we are able to do with RSC in React Native!
React Advanced Conference 2021React Advanced Conference 2021
21 min
Building Cross-Platform Component Libraries for Web and Native with React
Top Content
Building products for multiple platforms such as web and mobile often requires separate code-based despite most of the components being identical in look and feel. Is there a way where we could use shared React component library on different platforms and save time? In this presentation I'll demonstrate one way to build truly cross-platform component library with a unique approach of using React & React Native in combination.

Workshops on related topic

React Advanced Conference 2022React Advanced Conference 2022
81 min
Introducing FlashList: Let's build a performant React Native list all together
Top Content
WorkshopFree
In this workshop you’ll learn why we created FlashList at Shopify and how you can use it in your code today. We will show you how to take a list that is not performant in FlatList and make it performant using FlashList with minimum effort. We will use tools like Flipper, our own benchmarking code, and teach you how the FlashList API can cover more complex use cases and still keep a top-notch performance.You will know:- Quick presentation about what FlashList, why we built, etc.- Migrating from FlatList to FlashList- Teaching how to write a performant list- Utilizing the tools provided by FlashList library (mainly the useBenchmark hook)- Using the Flipper plugins (flame graph, our lists profiler, UI & JS FPS profiler, etc.)- Optimizing performance of FlashList by using more advanced props like `getType`- 5-6 sample tasks where we’ll uncover and fix issues together- Q&A with Shopify team
React Summit 2022React Summit 2022
117 min
Detox 101: How to write stable end-to-end tests for your React Native application
Top Content
WorkshopFree
Compared to unit testing, end-to-end testing aims to interact with your application just like a real user. And as we all know it can be pretty challenging. Especially when we talk about Mobile applications.
Tests rely on many conditions and are considered to be slow and flaky. On the other hand - end-to-end tests can give the greatest confidence that your app is working. And if done right - can become an amazing tool for boosting developer velocity.
Detox is a gray-box end-to-end testing framework for mobile apps. Developed by Wix to solve the problem of slowness and flakiness and used by React Native itself as its E2E testing tool.
Join me on this workshop to learn how to make your mobile end-to-end tests with Detox rock.
Prerequisites- iOS/Android: MacOS Catalina or newer- Android only: Linux- Install before the workshop
React Summit Remote Edition 2021React Summit Remote Edition 2021
60 min
How to Build an Interactive “Wheel of Fortune” Animation with React Native
Top Content
Workshop
- Intro - Cleo & our mission- What we want to build, how it fits into our product & purpose, run through designs- Getting started with environment set up & “hello world”- Intro to React Native Animation- Step 1: Spinning the wheel on a button press- Step 2: Dragging the wheel to give it velocity- Step 3: Adding friction to the wheel to slow it down- Step 4 (stretch): Adding haptics for an immersive feel
React Advanced Conference 2023React Advanced Conference 2023
159 min
Effective Detox Testing
Workshop
So you’ve gotten Detox set up to test your React Native application. Good work! But you aren’t done yet: there are still a lot of questions you need to answer. How many tests do you write? When and where do you run them? How do you ensure there is test data available? What do you do about parts of your app that use mobile APIs that are difficult to automate? You could sink a lot of effort into these things—is the payoff worth it?
In this three-hour workshop we’ll address these questions by discussing how to integrate Detox into your development workflow. You’ll walk away with the skills and information you need to make Detox testing a natural and productive part of day-to-day development.
Table of contents:
- Deciding what to test with Detox vs React Native Testing Library vs manual testing- Setting up a fake API layer for testing- Getting Detox running on CI on GitHub Actions for free- Deciding how much of your app to test with Detox: a sliding scale- Fitting Detox into you local development workflow
Prerequisites
- Familiarity with building applications with React Native- Basic experience with Detox- Machine setup: a working React Native CLI development environment including either Xcode or Android Studio
React Summit 2023React Summit 2023
88 min
Deploying React Native Apps in the Cloud
WorkshopFree
Deploying React Native apps manually on a local machine can be complex. The differences between Android and iOS require developers to use specific tools and processes for each platform, including hardware requirements for iOS. Manual deployments also make it difficult to manage signing credentials, environment configurations, track releases, and to collaborate as a team.
Appflow is the cloud mobile DevOps platform built by Ionic. Using a service like Appflow to build React Native apps not only provides access to powerful computing resources, it can simplify the deployment process by providing a centralized environment for managing and distributing your app to multiple platforms. This can save time and resources, enable collaboration, as well as improve the overall reliability and scalability of an app.
In this workshop, you’ll deploy a React Native application for delivery to Android and iOS test devices using Appflow. You’ll also learn the steps for publishing to Google Play and Apple App Stores. No previous experience with deploying native applications is required, and you’ll come away with a deeper understanding of the mobile deployment process and best practices for how to use a cloud mobile DevOps platform to ship quickly at scale.
JSNation 2023JSNation 2023
111 min
Bringing Your Web App to Native With Capacitor
WorkshopFree
So, you have a killer web app you've built and want to take it from your web browser to the App Store. Sure, there are a lot of options here, but most will require you to maintain separate apps for each platform. You want your codebase to be as close as possible across Web, Android, and iOS. Thankfully, with Capacitor, you can take your existing web app and quickly create native iOS and Android apps for distribution on your favorite App Store!
Contents: This workshop is aimed at beginner developers that have an existing web application, or are interested in mobile development. We will go over:- What is Capacitor- How does it compare to other cross-platform solutions- Using Capacitor to build a native application using your existing web code- Tidying up our application for distribution on mobile app stores with naming conventions, icons, splash screens and more