Did you forget to push the code to the version control system ?. Here is the easy way to automate the commit and push the source code to any version control system using Apple Script Editor
Create a new branch for the project (eg- development) also make sure your current workspace ie. development.
Open Apple Script copy & paste the below code, change the project path and commit messages and time interval to commit & push the source code
Save and export the script as application
Make the application run at system startup, open System Preferences -> Users & Groups -> Login Items click the + button and add the saved application. …
An Android library is like JAR files, the Android ARchive(AAR) bundle is the binary distribution of an Android Library Project.
Apart from JAR file, AAR contain resources as well as compiled byte-code and assets are not supported. we can make library modules which can be used as dependencies in Android projects.
In Android Studio each library is a module. To create a new library module in an existing Android project.
select File ▸ New ▸ New Module and select Android Library.
React is a javascript library for building user interfaces which is developed by Jordan Walke
. React Native is used to build mobile apps of both Android and iOS using JavaScript
. We can build apps faster instead of recompiling, and also reload app instantly with the help of Hot Reloading
.
Download and install Node & npm. Open terminal and check the node and npm version.
node -v
Run the following command to install `Watchman`.
brew install watchman
Final step to install React native
npm install -g react-native-cli
Run the following command to check the current version of React native
installed in your system. …
About