SSSteve Sultaninblog.stevesultan.com·Jan 28, 2022 · 1 min readHow to fix Android building fails on React Native?Building in Android bundle throws this compiler error blow: Are you not sure how to fix ? /Users/home/Desktop/APLIKACE/test/node_modules /@react-native-community/async-storage/android/src/main/java/com/ reactnativecommunity/asyncstorage/AsyncStorageM...00
SSSteve Sultaninblog.stevesultan.com·Jan 26, 2022 · 2 min readHow to add multi language support service to your React Native App?Let us begin with a installing package libraries like i18next , react-i18next, and @os-team/i18next-react-native-language-detector You can use either yarn or npm In my case, I will use yarn for demonstrating purpose. Step 1: installing the 3 ...00
SSSteve Sultaninblog.stevesultan.com·Jan 25, 2022 · 3 min readHow to send multiple requests using axios?Let us begin with a simple operation and submit one request using Axios. First, we import axios and specify the API/URL from which we want to load data. import axios from 'axios'; let one = "https://api.abc.com/ex" Following that, we specify that ...00
SSSteve Sultaninblog.stevesultan.com·Jan 19, 2022 · 1 min readHow to versioning a software?Earlier, I did some research on how to set version number to a software. I would like to share one of the most common formatting convention called Semantic Versioning (SemVer). SemVer has the following format: 1.4.3 (12ACF) <- Build number, should c...00
SSSteve Sultaninblog.stevesultan.com·Jan 19, 2022 · 1 min readHow to ignore a file on git after created repository ?Steps: Create a .gitignore file on the root To ignore a directory: name_of_directory/ To ignore a file: name_of_file We don't need to provide the complete path of the file or directory to be ignored, we just have to provide its name. If you want t...00