The official ReactJS documentation suggests to run the following command in the terminal for generating the release APK
cd android && ./gradlew assembleRelease
I get an exception in response to this command:
cd android && ./gradlew assembleRelease '.' is not recognized as an internal or external command, operable program or batch file.
What is an issue?
Continuous integration (CI) and continuous delivery (CD) embody a culture, set of operating principles, and collection of practices that enable application development teams to deliver code changes more frequently and reliably. The implementation is also known as the CI/CD pipeline.
Continuous Integration / Continuous Deployment (CI/CD) is the most widely adopted way of delivering software applications. There are fundamental differences between World Wide Web and mobile application platforms like Android and iOS. So implementing CI CD for mobile apps might involve different setups.
Continuous integration systems let you automatically build and test your app every time you check in updates to your source control system. You can use any continuous integration tool that can initiate a Gradle build to build your Android Studio projects.
Overview. CI/CD is a method to frequently deliver apps to customers by introducing automation into the stages of app development. The main concepts attributed to CI/CD are continuous integration, continuous delivery, and continuous deployment.
For Windows you need to use backslash in the original command
cd android && ./gradlew assembleRelease
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With