React Native: All about issues
XCode AppDelegate.m:12:9: ‘React/RCTBundleURLProvider.h’ file not found In Xcode do the following: Product -> Scheme -> Manage Schemes Click ‘+’ at the Target Select “React” if […]
NodeJS – All about
Basic Update node engine How to run shell command and get output? Non-stream formatted output Output stream Reference how-to-run-shell-script-file-or-command-using-nodejs How to write API requests? GraphQL […]
.NET: All about Setup
[h2]If reference is not found and broken[/h2] Run [js]update-package -reinstall[/js] to re-install
Android: All about layout
[h2]Optimize nested layout[/h2] The less (nesting level) the better Stop using layout_weight in LinearLayout “Tools > Layout Inspector” to inspect Layout
Android: All about Network
[h2]How to identify APIs being requested?[/h2] Use “View > Tool Windows > Android Profiler” tool to inspect network traffic. You may need to enable advanced […]
Android: All about testing
How to structure MVP for testing? How to setup JUnit How to setup Expresso Test file can’t be in the same folder with JUnit Test. […]
Android: Device rotation
Why do values in input field lose after rotating device? You need to set an ID for each field, so that when the device is […]
SQL: All about image
How to insert image file as blob data (varbinary(max)) MS SQL [sql]insert TEMP_UPLOAD_IMAGE (UploadInspectionId, FileName, Data) values (1002666, ‘IMG_20180823_061350847.jpg’, (SELECT BulkColumn FROM OPENROWSET(BULK N’D:\_temp_\IMG_20180823_061350847.jpg’, SINGLE_BLOB) […]
Google Cloud Platform: All about Firebase
Google Cloud Function How to run Firebase Cloud Function locally? Update firebase-tools and firebase-functions Serve HTTP functions from the command line react-native-firebase Analytics How to […]