This is an application meant for ecommerce banner creation. The app have templates which can be edited and required text can be added.
Upon editing you can easily save and share the template.
If you just want to try it, you can follow debug mode steps or else you can follow release mde steps.
- Clone the project.
- Run
npm i
- Run
npx react-native run-android
&npx react-native start
on different terminals. - The app will run on android simulator if you have it setup or if you have connected device it will run on it.
- Clone the project.
- Run
npm i
- Create an upload key using
keytool -genkeypair -v -storetype PKCS12 -keystore my-upload-key.keystore -alias my-key-alias -keyalg RSA -keysize 2048 -validity 10000
. More details here - Edit the gradle variabled in android/gradle.properties. More details here
- Inside android folder run
./gradlew assembleRelease
and then./gradlew bundleRelease
- The APK will be generated android/app/build/outputs/apk/release/
- You can test this by running
npx react-native run-android --variant=release
For more information please refer react native docs here