Android Core

Migrating React Native App to AndroidX

In this post, we will learn to migrate React Native application to AndroidX. Before starting, let me give you a brief introduction about Jetpack.

What is Android Jetpack?

Android Jetpack is the next generation of Android components, bringing together the benefits of the Support Library – backwards compatibility and immediate updates to a larger set of components, making it quick and easy to build robust, high quality apps. Android Jetpack manages activities like background tasks, navigation, and lifecycle management, so you can eliminate boilerplate code and focus on what makes your app great.

To start with the migration, firstly, edit gradle.properties of React Native application to add the following lines:

1
2
android.useAndroidX=true
android.enableJetifier=true

Next, Install jetifier package executing following command:

1
$ npm install --save-dev jetifier

Call npx jetify to migrate all node_modules to AndroidX, as follows:

1
$ npx jetify

And finally run your application using npx:

1
npx react-native run-android

Published on Java Code Geeks with permission by Arpit Aggarwal, partner at our JCG program. See the original article here: Migrating React Native App to AndroidX

Opinions expressed by Java Code Geeks contributors are their own.

Arpit Aggarwal

Arpit is a Consultant at Xebia India. He has been designing and building J2EE applications since more than 6 years. He is fond of Object Oriented and lover of Functional programming. You can read more of his writings at aggarwalarpit.wordpress.com
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button