React Native Kotlin Multiplatform Toolkit

Rate this content
Bookmark

Combining the best of two cross-platform frameworks to build the ultimate multiplatform development experience.


26 min
02 Dec, 2022

Video Summary and Transcription

The Talk discusses the combination of React Native and Kotlin Multiplatform for cross-platform app development. Challenges with native modules in React Native are addressed, and the potential improvements of using Kotlin Multiplatform Mobile are explored. The integration of Kotlin Multiplatform with React Native streamlines native implementation and eliminates boilerplate code. Questions about architecture and compatibility, as well as the possibility of supporting React Native Web, are discussed. The React Native toolkit works with native animations and has potential for open-source development.

Available in Español

1. Introduction to React Native and Native Modules

Short description:

We will discuss the combination of React Native and Kotlin Multiplatform to create a cross-platform setup for developing iOS and Android apps. Voice is a company that has built speech recognition for healthcare. Our app is powered by custom speech recognition and has already created over one million medical records. Native modules are important in React Native for accessing native functionality and communicating between native and JS code. However, few people write native modules due to the good ecosystem and library support in React Native, as well as the complexity of implementing them in both Android and iOS.

Okay, thank you for the nice introduction. As I said earlier, I'm Eric and with me is Leon and we want to talk about the combination of React Native and Kotlin Multiplatform to create the ultimate cross-platform setup for developing iOS and Android apps. So first let me start to introduce Voice a little bit. Voice is the company that's built speech recognition for healthcare. We have an application where healthcare workers can speak freely into our application. We transcribe the text and create structured medical records from the transcription. Then we are able to use an integration into the existing infrastructure and the facility to sync this record into the existing Electronic Healthcare Records systems. This is what we do, and you can see it in the GIF. And this way we already created over one million medical records and our app is powered by state-of-the-art custom speech recognition that we fine-tuned for the healthcare use case and all our models run on device, offline, so a facility does not have to have full Wi-Fi coverage to use our application.

We won't be here if this had nothing to do with React. Our application is built with React Native, so all the UI that you see here is built in React Native. We still use many native functionality to do some heavy lifting, and we will talk about this later. So who here in the audience has wrote an app in React Native? Oh nice. Cool. So, and who wrote a native module for React Native before? Yeah, still a few. Nice. Who has a big chunk of their code base in native? Okay. And who thinks about rewriting parts of their JS implementation in native? Okay, interesting. So we have three personas in this room. I think the first persona is the most represented one is people who have all or most of their code written in JS. They have only very little native code, maybe only the boilerplate that is needed for React And the kind of use of the shelf open source libraries that already did the work and wrapped native functionality into native modules so they are available in JavaScript. The other one probably not so represented here is people who have like their full stack app in Android and iOS, completely custom written and they have only very little JS code or even just thinking about introducing React Native to streamline some of their application to be cross platform. And the third person group maybe just mixes JS and native and uses whatever they need at the moment and what fits their needs the best.

So why are native modules so awesome and why we need them in React Native is the first one is the most obvious reason we want to access native functionality, we can't just do everything in JavaScript, you kind of have to have access to more platform specific stuff. And this is also what most React Native libraries do, they kind of just have an Android implementation for some functionality, iOS implementation, and then they kind of create a native module so they create a common interface for this native functionality and provide you with a JS interface to kind of just call it and you can consume this library from NPM. But there are also use cases like you have existing code like an Android and iOS and for example you have some state that is stored natively but you want to have UI that can show the state or update the state so you kind of have to create native modules to do the communication between the stuff in native and the stuff in JS. And also maybe the people who want to migrate parts of their stuff from JS to native they do it for performance reasons or to leverage concurrency that you have in native so just separate work from the JS thread. So but why do so few people actually write native modules? Probably the first one is that React Native has a really good ecosystem and there are well maintained libraries for most of the native functionalities that you would need so there's not so much of a case for writing native modules all the time because the library support is very good. But if you do need to write native modules it's pretty difficult because you need to with the Android tech stack, with the iOS tech stack and toolchain you need to for example you want to build a Bluetooth manager you have to implement it in iOS, in Swift, or Objective-C and you have to implement it in Android, Kotlin or Java. And then you also have to create these adapters, native modules, that kind of map data structures and arguments from native to JAS and also you need to kind of expose via event handling with a native module or kind of migrate exceptions or convert exceptions to promise rejections in your native module.

2. Challenges with Native Modules and React Native

Short description:

React Native projects face challenges with maintaining interfaces between native modules and keeping code bases in sync. Our team has encountered these issues and has developed over 20 custom native modules to facilitate communication between JS and native code. We need a better solution to avoid boilerplate code and improve the integration of native functionality in React Native projects. Leon will discuss the current status quo and potential improvements, including the use of Kotlin Multiplatform Mobile.

And you have so much boilerplate to just expose the functionality that you've just written in native. And also there's nothing inherent about native modules that keeps the interfaces in sync so you are fully responsible for keeping the interfaces Android, iOS, and JAS in sync so everything works together. And if you have an existing code basis in iOS and Android, it's pretty hard to use React Native in the first place because they maybe are maintained by different teams or in different repositories, and it's hard for those teams to kind of make an agreement on the interface native module that can then be used in a shared project which has React Native components.

So these issues lie at our heart because apart from the libraries that exist that have native modules in them, we also have over 20 custom native modules that we've written to do communication between JAS and native because we do our autoprocessing in native and we need to communicate data around it. We do all our model inference obviously in native managing model artifacts, downloading stuff, and doing background work in general. So this is why we need a solution for this. If you do so many native modules and expose so much native functionality, you need to have a better way than doing all this boilerplate and Leon will tell you more about the status quo and what we can do to improve.

So this is a typical React Native project setup. You have actually three sub projects for Android, iOS, and React, and each of these projects use their own language and own ecosystem and their own tools. So if you want to expose native code, you would have to write it twice for each native platform, and when you write React Native modules, the API to expose it is very low level and platform-dependent. So imagine you have to write 20 React Native modules to expose your native logic. There must be a better way to leverage native concurrency and native performance improvements in your React Native app.

3. Introduction to Kotlin Multiplatform Mobile

Short description:

Kotlin Multiplatform allows running Kotlin code on iOS and Android, directly compiled to platform specifics without the need for runtime. It enables the use of platform-specific APIs without additional libraries. A demo will showcase how Kotlin Multiplatform works with React Native. The common main folder contains platform-agnostic code that compiles natively for Android and iOS. The name manager class uses platform-specific implementations through the expect identifier. Android-specific APIs can be accessed, such as share preferences, while iOS-specific APIs, like user defaults, can also be imported. The expect class allows mixing cross-platform and platform-specific code. The common code class can be exposed to React Native using the React Native Module annotation.

So let's introduce Kotlin Multiplatform Mobile. With Kotlin Multiplatform, you are able to run your Kotlin code on iOS and Android. Unlike JS code with React Native, it is able to run on multiple platforms. But unlike React Native, Kotlin is compiled directly, natively to the platform specifics. So it has no runtime in between. And therefore, because it's compiled to the platform, it also allows you to use platform specific APIs directly without needing extra libraries which create a wrap for the native platform specific APIs.

To get a better understanding how Kotlin Multiplatform can be used together with React Native, Eric will show you a demo. Okay, so let's switch to the demo. Here we have a Kotlin file, and this Kotlin file is within a Kotlin Multiplatform project. So here we are in the common main folder, and in the Kotlin Multiplatform project, this is a special folder also called a source set, and everything that we write here is platform agnostic. So it's cross-platform code that is written in Kotlin, and like Leon said, will be compiled natively to JVM on Android and to native for iOS.

So what we have here is a name manager that has two methods, setName and getName, and setName will throw an exception if the name is not one of the valid ones, Eric or Leon. And internally, it uses persistent config to set this in a persistent way in native. So let's look at persistent config, and you can see persistent config is just like kind of an interface, but there is the expect identifier there, and this means that we expect that there is an actual platform-specific implementation for this class on iOS and on Android. And let's look into this. So I can go here and look into the Android one, and you can see now we are in the Android main source set. And this means we can access Android-specific APIs. So I can just import from Android, and if I want to have a key-value store on Android, that's pretty simple. I just use share preferences, and I can import from Android, get from the context of share preferences for our bundle, and then implement our methods that are defined by the expect class.

Similarly, I can go to the iOS implementation, and this is where it gets interesting, because now we are in the iOS main store set, and we can access platform-specific APIs from iOS. And this is kind of remarkable, because imports like import from foundation are usually imports you only have in Objective-C or Swift, but with Kotlin Multiplatform, you can just import and it's user defaults, and what it does, it will have, it will ultimately generate an inter-op interface to this native API. So we can just code against this native API in Kotlin, and Kotlin Multiplatform will do the rest, and link and compile against this native platform. So key-value store on iOS, we just use NSUserDefaults, and implement our methods. So back to our common code, and now we can understand how this works, we have common code, and whenever we need platform-specific code, we define an expect class that is actual implementations on both platforms, and in common code, we can do like whatever we want in cross-platform. And that's super cool, we can kind of mix cross-platform and platform-specific code. So now we have this cross-platform name manager that's super cool that writes into native state, but how do we get this super cool cross-platform class into React Native, where we need it? So what we've built is you can just add an annotation, it's called React Native Module, and give a name. And this automatically exposes this common code class to React Native. And you can see we import from our toolkit, which is named react-native-gudwit with a K for Kotlin. That's a joke. And now we expose the common code class.

4. Implementing Native Modules in Kotlin

Short description:

We expose our complete common Kotlin class and switch to JS. In the basic app, we can set the name and refresh to get the name from Native. We implement the common class via the native module setup and handle exceptions. We expose the get config and make it work on iOS. We explore a better solution to automatically get the name from native in the Kotlin code using the persistent config class.

So, but we're not done yet, we need to also expose the methods that we need. So let's export the method here. And now we exposed our complete common Kotlin class. And this is super cool. And now let's switch to JS.

This is a basic app, where I can set the name with an input field, I can, and a button, and I can refresh to get the name from Native. So, currently, this doesn't work at all because it doesn't really do anything when I say get name or set name. But you can see that this works because what we're loading is to its thing.

And now we want to implement our common class that we just exposed. And we can do this via the native module setup. So we just say name manager is from native modules. And say okay let's do the set name implementation. And we have a promise that we await set name from input. Okay. You remember, when we input a name that's not ErgoLeon, it will throw an exception. So let me just say Adam. And you can see the exception that was thrown in Kotlin code is now mapped to promise rejection. So let's set a name that's valid. Nice.

But we still don't have any get config. So we expose the get config so we just set our name here to await name manager get name and now we can refresh. And have Leon. So we use this, the methods that we just exposed also should work on iOS. Fine. And when I say something different, yeah. Okay. So, but now we always have to press refresh to get the name from native and maybe we can do better. So let's go back to our Kotlin code. And what's hidden here underneath is name is flow. And this uses the persistent config class, which defines get config as flow.

5. Using Kotlin Flows and the React Native Toolkit

Short description:

You can subscribe to Kotlin flows to receive notifications of new values. We create a new React Native method called name, which uses the flow to react previous. The toolkit allows for easy export of common code and provides utilities to directly expose Kotlin flows. There is a Kotlin dependency for the toolkit and a JavaScript dependency for the utilities.

You don't have to know too much about Kotlin flows, but you kind of can subscribe to them and then they notify you whenever there is a new value. So let's try to use this and make a new react native method, which is a suspend function called name, which has this interesting argument and say name as flow to react previous. So now we export this interesting function to react native. And now let's see. We just come out the local state that we have here for name and just say name, use flow, name manager.name. Now let me enter another name. And it automatically switches to the config because we subscribed to the native flow. And this is what the toolkit can do, it can kind of, you can easily export common code, but since we are in common code, we can add utilities to make other things even easier. For example, like directly expose Kotlin flows, because Kotlin flows are awesome, and why not have utilities to directly export them using our toolkit. So there's kind of a Kotlin dependency that's a toolkit, and there's also a JavaScript dependency for the utilities that we just used.

6. Combining Kotlin Multiplatform with React Native

Short description:

We saw Kotlin multiplatform in action, combining common code and platform-specific code. The React Native toolkit allows direct exposure of common code classes to React Native. Combining Kotlin multiplatform with React Native streamlines native implementation and eliminates boilerplate code. The project structure now has a single Kotlin codebase, with common code shared between platforms. React Native modules only need to be defined once in common code. The React Native toolkit GitHub repository provides a guide for getting started with React Native toolkit and Kotlin Multiplatform.

Okay, so this was a demo, switch back. Quick recap, we saw Kotlin multiplatform in action. We have common code, platform-specific code, we can mix them, and we can use expect actual to create kind of an interface to have, and create an abstraction on platform-specific implementations. And we can use the React Native toolkit to directly expose common code classes to React Native via a Native module, and use kind of toReact and use flow and utilities to make our lives easier to work with Kotlin code.

So what problems are solved by combining Kotlin multiplatform with React Native? First and for all, it's to streamline a native implementation via KMM. And also we would use the boilerplate code using our toolkit because you don't have to yourself create in native modules, but they are just generated using the annotation. Also using Kotlin multiplatform it's guaranteed that the interfaces for the different platforms stay in sync. And what also is nice is that we can now migrate native code to Kotlin multiplatform and then directly and easily expose it to React Native.

And let's have a look at how the project structure changed with this setup. Now we have a single codebase which is in Kotlin for our native code. And in this project there are three source sets. One common code source set which should contain the most of your business logic which you are sharing between all platform. And the only small portions of your code are actually platform-specific for Android and iOS. And now we can also see that React Native modules only have to be defined once in a common code and not for both platforms. And we think that this is the ultimate bus platform set up for mobile development because you can write your UI with React and implement your business logic natively with Kotlin Multiplatform. And between you have the React Native toolkit which helps you move between them. And how do you get started? We created the React Native toolkit GitHub repository. There's a nice guide which helps you set up and get started with React Native toolkit but also helps you in using Kotlin Multiplatform with React Native project.

So, thank you very much for listening. Please check out the repository I just mentioned. It's fresh off the press like released like two weeks ago and leave us a star and also if you think it's interesting what we're doing like bridging the gap React, Kotlin and machine learning and doing something for healthcare workers, please consider reaching out to us. We are hiring for React and Kotlin engineers. You can check us out on voice.de and we are happy to get your questions. Really nice presentation. I mean I'm blown away. I didn't know about this package. Thank you very much for first creating it. It seems like it's really easy to just integrate everything, which is yeah, really nice. But I would like to invite you here. Maybe we can go through some questions.

QnA

Questions about Architecture and Compatibility

Short description:

We have some questions about the new architecture and its compatibility with the library. We discussed adapting the library to generate modules for the new architecture. Independent native modules can be created and imported in a bare React Native project. However, manual linking is required for multiple modules. Supporting React Native Web with Kotlin to JS or Wasm compilation is an interesting possibility. The toolkit's compatibility with building native animations was briefly mentioned.

We do have some questions. That's nice. But meanwhile, while I'm going through them, could you please add more about the new architecture and the old one? Have you ever thought about it or what do you think it's like? Is there a good fit for this library?

Yeah. So we just had the talk about the new architecture for Nicola and it's super amazing what the React Native team has done. And we're kind of going a little bit different approach. But we've talked to Nicola and to the React Native team to kind of adapt this library to also generate modules that are more fitted to the new architecture. Also Nicola said that all the modules that we generate now are still backwards compatible still in the new architecture, but we can go further and also kind of generate code from Kotlin that's compatible with the really with the new architecture.

Yeah, thank you very much. There is another one. What do you think about the new native modules API from Xpo? Let's leave this question for later. Can an independent native module be created to be imported in a bare React Native project? Or does this whole project needs to be created with this, I think it's referring to the library itself?

I can answer this question. So if you generate native React Native modules, you can import them in other projects. And we're actually doing this with our app. And you have to keep in mind that by generating multiple React Native modules, they cannot be auto-linked. So you have to manually link them in your code. But that's also a nice feature to have, because then you can inject dependencies into React Native modules, which would not be possible if they are auto-linked, because they are the constructor. You have to be calling yourself, you can then give some extra arguments in there.

All right, Ian. There is another one. Would it be possible to support React Native Web, too, either with Kotlin to JS or Wasm compilation? Difficult, because this is only for React Native. I don't think if React Native is also supported for the web.

Yeah, there's also React Native Web. OK. But we haven't looked into it. But it's probably interesting, because Kotlin, as you said, the multiplatform can also compile to JS. So maybe it's interesting if something could be done there to kind of interop with more browser-specific stuff, and kind of write native modules for browser-specific stuff.

Yeah, there is also another question in regards to this compilation to JavaScript for React Native UIs in general. So, yeah, I think that question also got addressed. And how does this toolkit work with building native animations? I think this is like a vague question in one way or another, but maybe leveraging like native modules that have animations pre-built, I think.

Native Animations and Open Source Plans

Short description:

The toolkit works with building native animations, but it's not recommended for heavy animations. There are currently no open-source libraries built with the React Native toolkit. The 20 custom native modules we built are tightly coupled to our application's business logic. We are not familiar with Expo's native modules.

And how does this toolkit work with building native animations? I think this is like a vague question in one way or another, but maybe leveraging like native modules that have animations pre-built, I think. Yeah, I think what I would imagine that you have maybe some flow that does an animation. But you have to remember that we are still going over the bridge, and you will still have a render update if you receive something from useflow. So doing like super heavy animations over this useflow is still not really, doesn't really do it. You should still use kind of react, reanimated it a little bit differently. So you don't have this, these problems. So it's more basically, as a use case fire and forget, not to get back any info from the native side. It's for both sides, but you shouldn't rely on it to do like rapid fire information from native. It's just for business logic, normal state updates, all the stuff that you would normally write like with a Kotlin.

I'm curious to see if there are any open source libraries built with react native toolkit out there already. Currently not, because it's like we said, it's fresh from the press and we released it two weeks ago. And do you have any plans on open sourcing some of those 20 different native modules, except the business logic of course and give it to public? The thing about these 20 native modules, they are very tightly coupled to our application business logic inside our application. So that's why we have built these custom modules because they are exposing, especially this logic we have in our code and cannot use some public off-the-shelf library because they don't integrate so well with our own business logic we have already in native Kotlin code. This is also what Leon talked about dependency ejection is a super important topic. Most of the natures that we have have dependency ejections of dependencies that are super tailored to our application, our model manager, our processing and inferences and stuff.

Someone is saying greetings from the office. I totally agree, it was like a mind blowing presentation, I'll definitely give it a try. There is another question, what do you think about the new native modules from Expo and what do you think might be the difference? Do you mean React Native? Expo Native Modules. We are not familiar with Expo at all. Ok, that kind of makes sense. It's good to live in your own world in a way or another to come up with different solutions and not be influenced by others. I think this is what you have presented today. It's something new, something fresh from my opinion. Because I have been in this React Native ecosystem for a while. I have never seen anything like this. I'm really happy to be here in the first row to see it actually in action. I would like to say congrats once again and yeah, it was an amazing talk. Thank you so much for giving this presentation and we're looking forward to see where this package is going to go to. Thanks, thanks.

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.
React Summit Remote Edition 2020React Summit Remote Edition 2020
8 min
Styles and Theming with Restyle in React Native
Top Content
Haris is talking about the newly open-sourced library Restyle (https://github.com/Shopify/restyle); how it addresses many problems and pain points developers experience when managing evolving styles and theme support (gotta have dark mode!) in a React Native app.

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.
React Advanced Conference 2022React Advanced Conference 2022
131 min
Introduction to React Native Testing Library
Workshop
Are you satisfied with your test suites? If you said no, you’re not alone—most developers aren’t. And testing in React Native is harder than on most platforms. How can you write JavaScript tests when the JS and native code are so intertwined? And what in the world are you supposed to do about that persistent act() warning? Faced with these challenges, some teams are never able to make any progress testing their React Native app, and others end up with tests that don’t seem to help and only take extra time to maintain.
But it doesn’t have to be this way. React Native Testing Library (RNTL) is a great library for component testing, and with the right mental model you can use it to implement tests that are low-cost and high-value. In this three-hour workshop you’ll learn the tools, techniques, and principles you need to implement tests that will help you ship your React Native app with confidence. You’ll walk away with a clear vision for the goal of your component tests and with techniques that will help you address any obstacle that gets in the way of that goal.you will know:- The different kinds React Native tests, and where component tests fit in- A mental model for thinking about the inputs and outputs of the components you test- Options for selecting text, image, and native code elements to verify and interact with them- The value of mocks and why they shouldn’t be avoided- The challenges with asynchrony in RNTL tests and how to handle them- Options for handling native functions and components in your JavaScript tests
Prerequisites:- Familiarity with building applications with React Native- Basic experience writing automated tests with Jest or another unit testing framework- You do not need any experience with React Native Testing Library- Machine setup: Node 16.x or 18.x, Yarn, be able to successfully create and run a new Expo app following the instructions on https://docs.expo.dev/get-started/create-a-new-app/