How to build react native project to aar library?

Viewed 2862

Is it possible to build a RN project to an AAR package that can be integrated by other Android apps? And is there any similar solution for iOS?

1 Answers

Please refer to this github repo. It has two projects lib and application. "lib" is a RN project which can be build to generate the aar and then import it into "application" project which is an Android project (but it could also be another RN project)

Related