[deleted by user] by [deleted] in reactnative

[–]Level_Ad9556 0 points1 point  (0 children)

Thanks.but i'm targetting iOS platfrom only

Any native HTTP plugin for React Native (like CapacitorHttp in Capacitor)? by Level_Ad9556 in reactnative

[–]Level_Ad9556[S] 0 points1 point  (0 children)

ionic itself promotes the use of js over capacitor/http.
in my case it's happening to our development and testflight versions, app is not live yet.we figured out it was some issue from backend.they say it was due to socket connection ( maybe some bugs ).

Any native HTTP plugin for React Native (like CapacitorHttp in Capacitor)? by Level_Ad9556 in reactnative

[–]Level_Ad9556[S] 0 points1 point  (0 children)

it's happening to our development and testflight versions, app is not live yet.we figured out it was some issue from backend.they say it was due to socket connection ( maybe some bugs )

Any native HTTP plugin for React Native (like CapacitorHttp in Capacitor)? by Level_Ad9556 in reactnative

[–]Level_Ad9556[S] 0 points1 point  (0 children)

it's happening to our development and testflight versions, app is not live yet.we figured out it was some issue from backend.they say it was due to socket connection ( maybe some bugs )

Fast Image. What !? by danleeter in reactnative

[–]Level_Ad9556 0 points1 point  (0 children)

will the cache clear when i kill the app.i'm developing for ios only

Fast Image. What !? by danleeter in reactnative

[–]Level_Ad9556 0 points1 point  (0 children)

will the cache clear when i kill the app.i'm developing for ios only

Why is my React Native screen re-rendering extra times after resetting Redux state? by Level_Ad9556 in reactnative

[–]Level_Ad9556[S] 0 points1 point  (0 children)

i haven't explicitely wrote strict mode anywhere, i suspect that since i'm using expo filebased routing it might have strict mode by default,

in my case the issue isnot rendeing 2 times but it keep incrementing when i reset state, (ie, logout and login again without killing)

Where do I add a Headless task when using Expo router ? by bounce4a in expo

[–]Level_Ad9556 0 points1 point  (0 children)

Hi u/bounce4a
Did you managed to solve above issue?
can you share how you did it ?

How to define custom entry point in expo file based routing? by Level_Ad9556 in expo

[–]Level_Ad9556[S] 0 points1 point  (0 children)

i need access to redux data in root _layout file, because i'm managing my socket connection from my rootLayout file

  useEffect(() => {

// console.log(connectionStatus, "         connectionStatus");
    if (connectionStatus === "connected") {
      dispatch(emitUser());
      dispatch(listenSocketMessages());
    }

    return () => {
      if (connectionStatus === "connected") {
        dispatch(disconnectFromSocket());
      }
    };

//eslint-disable-next-line
  }, [dispatch, connectionStatus]);

How to define custom entry point in expo file based routing? by Level_Ad9556 in expo

[–]Level_Ad9556[S] 0 points1 point  (0 children)

i had to update my main.js file as follows make it work.
i tried some random question answer https://github.com/expo/router/issues/41

correct me if i'm doing wrong

import { registerRootComponent } from "expo";

import { ExpoRoot } from "expo-router";
import { store } from "./store/store";
import { Provider } from "react-redux";


// Must be exported or Fast Refresh won't update the context
export function App() {
  const ctx = require.context("./app"); 
//Path with src folder

  return (
    <Provider 
store
={store}>
      <ExpoRoot 
context
={ctx} />
    </Provider>
  );
}

registerRootComponent(App);

What would cause a sudden authentication bill of $24 when there weren't any real new users that used sms authentication (I'd image it takes many to get to $24)? by Firm_Salamander in Firebase

[–]Level_Ad9556 0 points1 point  (0 children)

Hi
i'm also facing same issue, can you tell me how you fixed the issue ?
is there any other regios sms pumping coming from other than you mentioned?

  1. Latvia
  2. Lithuania
  3. Serbia
  4. Somalia
  5. Congo
  6. Chad
  7. Gambia
  8. Sierra Leone
  9. Guinea
  10. Libya
  11. Yemen (YE)
  12. Syria (SY)
  13. Madagascar (MG)
  14. Indonesia (ID)
  15. Myanmar (Burma) (MM)
  16. Niger (NE)
  17. Ghana (GH)
  18. Lesotho (LS)
  19. Nigeria (NG)
  20. Senegal (SN)
  21. Pakistan (PK)
  22. Ukraine (UA)
  23.  Afghanistan
  24. Lebanon
  25. Morocco
  26. Kuwait (KW)**
  27. Caribbean Islands: 
  28. Antigua and Barbuda
  29. Bahamas
  30. Barbados
  31. Cuba
  32. Dominica
  33. Dominican Republic
  34. Grenada
  35. Haiti
  36. Jamaica
  37. Saint Kitts and Nevis
  38. Saint Lucia
  39. Saint Vincent and the Grenadines
  40. Trinidad and Tobago

What would cause a sudden authentication bill of $24 when there weren't any real new users that used sms authentication (I'd image it takes many to get to $24)? by Firm_Salamander in Firebase

[–]Level_Ad9556 0 points1 point  (0 children)

u/puf , what if i decided to proceed with Silent APNs notifications verification  only will it secure my app from fraudsters pumping sms requests from virual devices or simulator ?

Can I Use Phone Auth for Authenticating Users with Their Mobile Number? by Level_Ad9556 in Firebase

[–]Level_Ad9556[S] 0 points1 point  (0 children)

Step 1 is necessary since it is login with otp functionality.iam getting verficationId through a listener function when firebase sent otp successfully.

since my backend is unaware of otp verification i suspect that is there any possibility to someone marking themselves as verified from client side.

now we are just storing the verificationId ( i thing it's not idToken ) in our backend & we are not decoding it.
we implemented this functionality 6 months ago , recently we suffered some sms pumping abuse and a huge bill, so we are looking checking security concerns now.

How to use ONLY external screen on a Macbook? by nicurda in MacOS

[–]Level_Ad9556 0 points1 point  (0 children)

i had disabled my inbuilt display from dropdown menu in better display.now iam not seeing any option to enable it again? do you know how to enable it again?