Raw POST using cURL in PHP

We can do a raw POST with cURL library, which can send text data to server, such as json, xml, html ...
May 14, 2020 PHP cURL Comments 0

OPPO PUSH for React Native

react-native-oppo-push is developed with the official document OPPO PUSH client SDK interface docume...
May 12, 2020 React Native Comments 0

Ways to clear an existing array in Javascript

There are some ways to empty an existing array in Javascript.1. Init arrayA = [];This code will set ...
May 10, 2020 Javascript Comments 0

React Native 0.62 Warn Animated: "useNativeDriver" was not specified

QuestionUpgrade the React Native project to 0.62. There are some warnings about the Animated method....
May 08, 2020 React Native Comments 0

Detect Dark Mode in React Native

Dark theme is available in Android 10 (API level 29) and higher. In iOS 13.0 and later, people can c...
May 06, 2020 React Native Comments 0

Android ERROR: Could not find method jackOptions() for arguments

QuestionIn Android Studio 3.5.1, an error occurred during compiling.ERROR: Could not find method jac...
May 04, 2020 Android Comments 0

React Native 0.62 iOS Error: Undefined symbol: associated type descriptor for FloatLiteralType

QuestionWhen upgrading React Native 0.61.5 to 0.62.2, the following error occurred during Xcode comp...
May 01, 2020 React Native Comments 0

Upgrade to React Native 0.62.2 iOS error: Undefined symbol _swift_getFunctionReplacement

QuestionWhen upgrading React Native from 0.61.5 to 0.62.2, Xcode compiles with errors:Undefined symb...
Apr 30, 2020 React Native Comments 0

Retrieve response headers from PHP cURL

There are two ways to get response headres from PHP cURL.1. Using CURLOPT_HEADER optionWith the curl...
Apr 28, 2020 PHP cURL Comments 0

Fix Android 9+ Error: Cleartext HTTP traffic not permitted

QuestionMy Android project works fine on on Android 8 and below, but on Android P+, the http connect...
Apr 26, 2020 Android Comments 0