Using Reactotron for Debugging React Native

Hi gais, kali ini gw mau bahas tools debuging ReactNative, tadi abis nyari tools debug, sebenernya ada banyak banget tapi gua nyoba salah satu nya, yaitu reactotron untuk mac install nya tinggal pake brew $ brew cask install reactotron $ npm i reactotron-react-native --save-dev # di project RN ya buka apps nya kemudian masuk ke project react native kalian, bikin satu file debugger.js paste code ini ke file tersebut import Reactotron from 'reactotron-react-native' Reactotron .
Read more >

React Native change App/Package Name

There are things one may need to change in the release build for Android. Things like App Name are a case here. Suppose you start developing by initialising to a generic App Name and at the time of release one need to change to the actual App Name. Generate with correct names Before we move forward and change things in the final version of the app. There is a way to fix this from the beginning.
Read more >

Signed apk to PlayStore

Hi today i want to share how to signed android apps to play store(react native,cordova,etc) your apk must be signed first.. signing your apk Generate your keystore keytool -genkey -v -dname 'CN=Alfathdirk,OU=YourAPK,O=GeekyAnts,L=Indonesia,ST=Jakarta,C=IN' -keystore yourkeystore.keystore -keypass yourpassword -storepass yourpassword -alias yourkeystore -keyalg RSA -keysize 2048 -validity 10000 Download certificate download deployment_cert.der for your apps on https://play.google.com/apps/publish/ menu App Signing Validating and Zip your Apk keytool -importcert -file deployment_cert.der -keystore yourkeystore.keystore jarsigner -verbose -keystore yourkeystore.
Read more >