Relative Content

Tag Archive for androidreact-nativemobile

How select the first tab in the top bar navigation in React Native when returning from another menu

import React, { Component,useEffect } from ‘react’; import ‘react-native-gesture-handler’; import { SafeAreaView,StackLayout,Button,TouchableOpacity,Image,Text, View ,StyleSheet, Dimensions} from ‘react-native’ import { createBottomTabNavigator } from ‘@react-navigation/bottom-tabs’; import { createMaterialTopTabNavigator } from ‘@react-navigation/material-top-tabs’; import { useIsFocused,NavigationContainer } from ‘@react-navigation/native’; const Tab = createBottomTabNavigator(); const TopTabsGroup = createMaterialTopTabNavigator(); function BeritaTerkini (){ return( <View> <Text> Berita Terkini </Text> </View> ) } […]

Deploying Mobile App To Google give an error

When trying to deploy an app to the Play Store I get an error stating the project says it uses ads when the profile on Google says we don’t. The app doesn’t use ads and the com.google.android.gms.permission.AD_ID tag is not in the manifest before or after building the app. Any Ideas on how to fix this issue to release the app to the play store?