skip to Main Content

Task :react-native-gradle-plugin:compileKotlin FAILED, 'compileJava' task (current target is 1.8) and 'compileKotlin' task (current target is 11) – React native

info Running jetifier to migrate libraries to AndroidX. You can disable it using "--no-jetifier" flag. Jetifier found 936 file(s) to forward-jetify. Using 12 workers... info JS server already running. info Installing the app... > Task :react-native-gradle-plugin:compileKotlin FAILED 'compileJava' task (current…

VIEW QUESTION

MaterialCommunityIcons showing incorrect icon in react native bottom tab navigator

I'm following the guide from https://reactnavigation.org/docs/bottom-tab-navigator/ import { createBottomTabNavigator } from '@react-navigation/bottom-tabs'; import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons'; const Tab = createBottomTabNavigator(); function MyTabs() { return ( <Tab.Navigator initialRouteName="Feed" screenOptions={{ tabBarActiveTintColor: '#e91e63', }} > <Tab.Screen name="Feed" component={Feed} options={{ tabBarLabel: 'Home', tabBarIcon: ({…

VIEW QUESTION

Slow rendering of image in react Native

Image is downloaded , but still rendering very slowly, anyone knows what can be happening? enter image description here here is my code: import React from 'react' import { StyleSheet, Image, Text, View } from 'react-native' import Backgroundimage from '../../../assets/images/backgroundImage.jpg'…

VIEW QUESTION
Back To Top
Search