dera.hashnode.devHow to disable dark-mode in React NativeAndroid To disable dark mode on Android, go to styles.xml. This is the path android/app/src/main/res/values/styles.xml then add this piece of code <item name="android:forceDarkAllowed">false</item> Your styles.xml should now look somewhat like this ...Apr 9, 2023·1 min read
dera.hashnode.devHow to completely uninstall Android studio from your MacbookHere are the steps First remove android studio application by going into Application folder, locating android studio and dragging into the bin or highlight it and select "Move to Bin" Or you can simply open your terminal and type this rm -Rf /Appli...Apr 9, 2023·1 min read
dera.hashnode.devHow I fixed "Undefined symbol: _OBJC_CLASS_$_FKUserDefaultsPlugin" etc, in React Native ios.Here are the rest of the errors I found on xcode"Undefined symbol: OBJC_CLASS$_FKUserDefaultsPlugin", "Undefined symbol: OBJC_CLASS$_FlipperClient", "Undefined symbol: OBJC_CLASS$_FlipperKitLayoutPlugin","Undefined symbol: OBJC_CLASS$_FlipperKitNetwo...Apr 9, 2023·1 min read
dera.hashnode.dev'Pods-MyApp' target has transitive dependencies that include statically linked binaries:I got this error when running the below code in React Native npx pod-install or cd ios && pod install To fix this, I went into my project podfile and looked for this use_frameworks! And changed it to use_frameworks = true Then I ran pod install...Apr 2, 2023·1 min read
dera.hashnode.dev> NDK at /Users/chideraugwuanyi/Library/Android/sdk/ndk/21.4.7075529 did not have a source.properties file in React Native AndroidTo fix this, open Finder and type this /Users/yourUserName/Library/Android/sdk To get this link above, you can open android studio, find "SDK Manager" and click on it. On top of the new page, you should see the link. Copy it.. After typing the l...Feb 21, 2023·1 min read