Facebook Login working on ios Simulator but not on device UIApplicationEndBackgroundTaskError

I'm working on an implementation of react native with expo Bare Workflow, integrating authentication with Firebase (react-native-fbsdk).

It works just fine when i test it on simulator, but when i try it on a phisical device is not connecting... I'm sure is some misconfiguration, but where :S


Here is the code:


import React, { useState, useEffect } from 'react';

import { Button, View, Text, StyleSheet } from 'react-native';

import auth from '@react-native-firebase/auth';

import { LoginButton, LoginManager, AccessToken } from 'react-native-fbsdk';



export default function App() {

// Set an initializing state whilst Firebase connects

const [initializing, setInitializing] = useState(true);

const [user, setUser] = useState();



// Handle user state changes

function onAuthStateChanged(user) {

setUser(user);

if (initializing) setInitializing(false);

}



useEffect(() => {

const subscriber = auth().onAuthStateChanged(onAuthStateChanged);

return subscriber; // unsubscribe on unmount

}, []);



if (initializing) return null;



async function onFacebookButtonPress() {

// Attempt login with permissions

const result = await LoginManager.logInWithPermissions(['public_profile', 'email']);



if (result.isCancelled) {

throw 'User cancelled the login process';

}



// Once signed in, get the users AccesToken

const data = await AccessToken.getCurrentAccessToken();



if (!data) {

throw 'Something went wrong obtaining access token';

}



// Create a Firebase credential with the AccessToken

const facebookCredential = auth.FacebookAuthProvider.credential(data.accessToken);



console.log("facebookCredential");

console.log(facebookCredential);

// Sign-in the user with the credential

return auth().signInWithCredential(facebookCredential);

}



async function logoutButtonPress() {

if (user) auth().signOut();

LoginManager.logOut();

}



return (



<View style={styles.container}>

<Button

title="Facebook Sign-In"



onPress={() => onFacebookButtonPress().then(() => console.log('Signed in with Facebook!'))}

/>

<LoginButton

onLoginFinished={

(error, result) => {

if (error) {

console.log("login has error: " + result.error);

} else if (result.isCancelled) {

console.log("login is cancelled.");

} else {

AccessToken.getCurrentAccessToken().then(

(data) => {

console.log(data.accessToken.toString())

}

)

}

}

}

onLogoutFinished={() => console.log("logout.")}/>

<Button

title="Cerrar sesión"

onPress={() => logoutButtonPress().then(() => console.log('Signed out'))}

/>

<Text>

Usuario Activo? {user ? user.displayName : 'no'}

</Text>

</View>

);

}



const styles = StyleSheet.create({

container: {

flex: 1,

justifyContent: 'center',

alignItems: 'center',

backgroundColor: '#F5FCFF',

},

welcome: {

fontSize: 20,

textAlign: 'center',

margin: 10,

},

instructions: {

textAlign: 'center',

color: '#333333',

marginBottom: 5,

},

});






Here is the debug console:


2020-05-17 21:29:23.151146-0400 iMonedas[3249:864464] - <AppMeasurement>[I-ACS036002] Analytics screen reporting is enabled. Call +[FIRAnalytics setScreenName:setScreenClass:] to set the screen name or override the default screen class name. To disable screen reporting, set the flag FirebaseScreenReportingEnabled to NO (boolean) in the Info.plist

2020-05-17 21:29:23.175583-0400 iMonedas[3249:864290] You've implemented -[<UIApplicationDelegate> application:performFetchWithCompletionHandler:], but you still need to add "fetch" to the list of your supported UIBackgroundModes in your Info.plist.

2020-05-17 21:29:23.175665-0400 iMonedas[3249:864290] You've implemented -[<UIApplicationDelegate> application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist.

2020-05-17 21:29:23.179190-0400 iMonedas[3249:864290] LaunchScreen.xib is missing. Unexpected loading behavior may occur.

2020-05-17 21:29:23.259408-0400 iMonedas[3249:864466] 6.13.0 - [Firebase/Analytics][I-ACS024000] Debug mode is on

2020-05-17 21:29:23.275373-0400 iMonedas[3249:864464] Task <7AA518BB-06D5-4688-BFAA-E6894A482B10>.<1> finished with error [-1002] Error Domain=NSURLErrorDomain Code=-1002 "unsupported URL" UserInfo={NSUnderlyingError=0x281e1f360 {Error Domain=kCFErrorDomainCFNetwork Code=-1002 "(null)"}, NSErrorFailingURLStringKey=YOUR-APP-URL-HERE, NSErrorFailingURLKey=YOUR-APP-URL-HERE, NSLocalizedDescription=unsupported URL}

2020-05-17 21:29:23.275507-0400 iMonedas[3249:864464] EXUpdates: Could not emit error event. Did you set the bridge property on the controller singleton?

2020-05-17 21:29:23.296676-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/InstanceID][I-IID023000] Info is not found in Keychain. OSStatus: -25300. Keychain query: {

acct = "com.google.iid.checkin-account";

class = genp;

gena = "com.google.iid";

"m_Limit" = "m_LimitAll";

"r_Attributes" = 1;

"r_Data" = 1;

svce = "com.google.iid.checkin-service";

}

2020-05-17 21:29:23.297139-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/InstanceID][I-IID023000] Info is not found in Keychain. OSStatus: -25300. Keychain query: {

atag = {length = 18, bytes = 0x636f6d2e676f6f676c652e6969642d7c4b7c};

class = keys;

"r_Ref" = 1;

type = 42;

}

2020-05-17 21:29:23.297559-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/InstanceID][I-IID023000] Info is not found in Keychain. OSStatus: -25300. Keychain query: {

atag = {length = 18, bytes = 0x636f6d2e676f6f676c652e6969642d7c507c};

class = keys;

"r_Ref" = 1;

type = 42;

}

2020-05-17 21:29:23.297863-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/InstanceID][I-IID009000] No keypair info is found with tag com.google.iid-|K|

2020-05-17 21:29:23.298022-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/InstanceID][I-IID009006] There's no legacy keypair so no need to do migration.

2020-05-17 21:29:23.298231-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS005000] The AdSupport Framework is not currently linked. Some features will not function properly. Learn more at http://goo.gl/9vSsPb

2020-05-17 21:29:23.300625-0400 iMonedas[3249:864463] 6.13.0 - [GULReachability][I-REA902003] Monitoring the network status

2020-05-17 21:29:23.301067-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS023007] Analytics v.60106000 started

2020-05-17 21:29:23.301503-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS023008] To disable debug logging set the following application argument: -noFIRAnalyticsDebugEnabled (see http://goo.gl/RfcP7r)

2020-05-17 21:29:23.303086-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS023009] Debug logging enabled

2020-05-17 21:29:23.331627-0400 iMonedas[3249:864469] Deleted assets and updates from SQLite in 55.970073 ms

2020-05-17 21:29:23.366686-0400 iMonedas[3249:864464] Deleted 1 assets from disk in 34.584999 ms

2020-05-17 21:29:23.366785-0400 iMonedas[3249:864464] Retried deleting assets from disk in 0.000954 ms

2020-05-17 21:29:23.400298-0400 iMonedas[3249:864290] Unbalanced calls to begin/end appearance transitions for <UIViewController: 0x106c0b5b0>.

2020-05-17 21:29:23.484496-0400 iMonedas[3249:864459] 6.13.0 - [GoogleUtilities/AppDelegateSwizzler][I-SWZ001008] Successfully created App Delegate Proxy automatically. To disable the proxy, set the flag GoogleUtilitiesAppDelegateProxyEnabled to NO (Boolean) in the Info.plist

2020-05-17 21:29:23.484584-0400 iMonedas[3249:864459] 6.13.0 - [GULReachability][I-REA902004] Network status has changed. Code:2, status:Connected

2020-05-17 21:29:23.486776-0400 iMonedas[3249:864459] 6.13.0 - [Firebase/Analytics][I-ACS031010] Tracking view controller. Class, ID: UIViewController, -1105527146961464323

2020-05-17 21:29:23.487100-0400 iMonedas[3249:864459] 6.13.0 - [Firebase/Analytics][I-ACS031006] View controller already tracked. Class, ID: UIViewController, -1105527146961464323

2020-05-17 21:29:23.489126-0400 iMonedas[3249:864459] 6.13.0 - [Firebase/Analytics][I-ACS029014] Successfully parsed a configuration. Version: 1589692865978290

2020-05-17 21:29:23.489697-0400 iMonedas[3249:864475] 6.13.0 - [Firebase/Analytics][I-ACS023016] Analytics is ready to receive events

2020-05-17 21:29:23.506061-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS032003] iAd framework is not linked. Search Ad Attribution Reporter is disabled.

2020-05-17 21:29:23.507878-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS023024] No data to upload. Upload task will not be scheduled

2020-05-17 21:29:23.508811-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS033003] Scheduling user engagement timer

2020-05-17 21:29:23.509131-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS002002] Engagement timer scheduled to fire in approx. (s): 3600

2020-05-17 21:29:23.513018-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS023012] Analytics enabled

2020-05-17 21:29:23.514475-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS023051] Logging event: origin, name, params: auto, screen_view (_vs), {

ga_event_origin (_o) = auto;

ga_screen_class (_sc) = UIViewController;

ga_screen_id (_si) = -1105527146961464323;

}

2020-05-17 21:29:23.517945-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS023073] Debug mode is enabled. Marking event as debug and real-time. Event name, parameters: screen_view (_vs), {

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = UIViewController;

ga_screen_id (_si) = -1105527146961464323;

}

2020-05-17 21:29:23.535845-0400 iMonedas[3249:864459] 6.13.0 - [Firebase/Analytics][I-ACS023072] Event logged. Event name, event params: screen_view (_vs), {

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = UIViewController;

ga_screen_id (_si) = -1105527146961464323;

}

2020-05-17 21:29:23.573796-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS002002] Measurement timer scheduled to fire in approx. (s): 0.8274340629577637

2020-05-17 21:29:23.573884-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS023028] Upload task scheduled to be executed in approx. (s): 0.8274340629577637

2020-05-17 21:29:23.686683-0400 iMonedas[3249:864290] [LayoutConstraints] Unable to simultaneously satisfy constraints.

Probably at least one of the constraints in the following list is one you don't want.

Try this:

(1) look at each constraint and try to figure out which you don't expect;

(2) find the code that added the unwanted constraint or constraints and fix it.

(Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)

(

"<NSAutoresizingMaskLayoutConstraint:0x28335cd70 h=--& v=--& FBSDKLoginButton:0x106d2da60'Log in'.height == 30 (active)>",

"<NSLayoutConstraint:0x28335cbe0 FBSDKLoginButton:0x106d2da60'Log in'.height == 28 (active)>"

)


Will attempt to recover by breaking constraint

<NSLayoutConstraint:0x28335cbe0 FBSDKLoginButton:0x106d2da60'Log in'.height == 28 (active)>


Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.

The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKitCore/UIView.h> may also be helpful.

2020-05-17 21:29:23.880120-0400 iMonedas[3249:864478] [] tcp_input [C1.1:3] flags=[R] seq=1692668381, ack=0, win=0 state=CLOSED rcv_nxt=1692668381, snd_una=3146050303

2020-05-17 21:29:23.887556-0400 iMonedas[3249:864478] [] tcp_input [C1.1:3] flags=[R] seq=1692668381, ack=0, win=0 state=CLOSED rcv_nxt=1692668381, snd_una=3146050303

2020-05-17 21:29:24.427814-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS002001] Measurement timer fired

2020-05-17 21:29:24.428015-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS002003] Measurement timer canceled

2020-05-17 21:29:24.428302-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS023033] Starting data upload

2020-05-17 21:29:24.429486-0400 iMonedas[3249:864475] 6.13.0 - [Firebase/Analytics][I-ACS023037] No data to upload

2020-05-17 21:29:24.429893-0400 iMonedas[3249:864475] 6.13.0 - [Firebase/Analytics][I-ACS023126] Fetching configuration from the server

2020-05-17 21:29:24.432119-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS900001] Downloading data. Host: https://app-measurement.com/config/app/1:945654930220:ios:e06fe2ebd3d403a3aeea89?platform=ios&app_instance_id=FB0B5CE28D284DD7BA7B5342CFB2A21B&gmp_version=60106

2020-05-17 21:29:24.622023-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS901006] Received SSL challenge for host. Host: https://app-measurement.com/config/app/1:945654930220:ios:e06fe2ebd3d403a3aeea89?platform=ios&app_instance_id=FB0B5CE28D284DD7BA7B5342CFB2A21B&gmp_version=60106

2020-05-17 21:29:24.820977-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS023127] Fetched configuration. Status code: 304

2020-05-17 21:29:24.821405-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS023131] Configuration has not been modified. Using the same configuration. Code: 304

2020-05-17 21:29:24.838878-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS023033] Starting data upload

2020-05-17 21:29:24.840954-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS023105] Event is not subject to real-time event count daily limit. Marking an event as real-time. Event name, parameters: screen_view (_vs), {

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = UIViewController;

ga_screen_id (_si) = -1105527146961464323;

}

2020-05-17 21:29:24.844476-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS012018] Saving bundle. size (bytes): 470

2020-05-17 21:29:24.844562-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS023116] Bundle added to the upload queue. BundleID, timestamp (ms): 105, 1589765363401

2020-05-17 21:29:24.852210-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS023038] Uploading events. Elapsed time since last successful upload (s): 673.1979448795319

2020-05-17 21:29:24.852267-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS023039] Measurement data sent to network. Timestamp (ms), data: 1589765364851, <APMPBMeasurementBatch: 0x28127b1b0>

2020-05-17 21:29:24.854710-0400 iMonedas[3249:864475] 6.13.0 - [Firebase/Analytics][I-ACS900000] Uploading data. Host: https://app-measurement.com/a

2020-05-17 21:29:25.014718-0400 iMonedas[3249:864459] 6.13.0 - [Firebase/Analytics][I-ACS901006] Received SSL challenge for host. Host: https://app-measurement.com/a

2020-05-17 21:29:25.077643-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS023044] Successful upload. Got network response. Code, size: 204, -1

2020-05-17 21:29:25.079657-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS002002] Measurement timer scheduled to fire in approx. (s): -0.6778789758682251

2020-05-17 21:29:25.079811-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS023028] Upload task scheduled to be executed in approx. (s): -0.6778789758682251

2020-05-17 21:29:25.101271-0400 iMonedas[3249:864459] 6.13.0 - [Firebase/Analytics][I-ACS023024] No data to upload. Upload task will not be scheduled

2020-05-17 21:29:25.101342-0400 iMonedas[3249:864459] 6.13.0 - [Firebase/Analytics][I-ACS002003] Measurement timer canceled

2020-05-17 21:29:39.063856-0400 iMonedas[3249:864462] [] tcp_input [C6.1:3] flags=[R] seq=4186287364, ack=0, win=0 state=CLOSED rcv_nxt=4186287364, snd_una=391868842

2020-05-17 21:29:39.064168-0400 iMonedas[3249:864462] [] tcp_input [C6.1:3] flags=[R] seq=4186287364, ack=0, win=0 state=CLOSED rcv_nxt=4186287364, snd_una=391868842

2020-05-17 21:35:44.639274-0400 iMonedas[3249:865543] 6.13.0 - [Firebase/Analytics][I-ACS033003] Scheduling user engagement timer

2020-05-17 21:35:44.639639-0400 iMonedas[3249:865543] 6.13.0 - [Firebase/Analytics][I-ACS002003] Engagement timer canceled

2020-05-17 21:35:44.639828-0400 iMonedas[3249:865543] 6.13.0 - [Firebase/Analytics][I-ACS002002] Engagement timer scheduled to fire in approx. (s): 3600

2020-05-17 21:35:44.640045-0400 iMonedas[3249:865543] 6.13.0 - [Firebase/Analytics][I-ACS002003] Engagement timer canceled

2020-05-17 21:35:44.640189-0400 iMonedas[3249:865543] 6.13.0 - [Firebase/Analytics][I-ACS023144] App will resign active state. Scheduling data upload

2020-05-17 21:35:44.640379-0400 iMonedas[3249:865543] 6.13.0 - [Firebase/Analytics][I-ACS023145] Background task started. Task ID: 9

2020-05-17 21:35:44.641267-0400 iMonedas[3249:865435] 6.13.0 - [Firebase/Analytics][I-ACS023051] Logging event: origin, name, params: auto, user_engagement (_e), {

engagement_time_msec (_et) = 381118;

ga_event_origin (_o) = auto;

ga_screen_class (_sc) = UIViewController;

ga_screen_id (_si) = -1105527146961464323;

}

2020-05-17 21:35:44.641633-0400 iMonedas[3249:865435] 6.13.0 - [Firebase/Analytics][I-ACS023073] Debug mode is enabled. Marking event as debug and real-time. Event name, parameters: user_engagement (_e), {

engagement_time_msec (_et) = 381118;

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = UIViewController;

ga_screen_id (_si) = -1105527146961464323;

}

2020-05-17 21:35:44.712762-0400 iMonedas[3249:865578] 6.13.0 - [Firebase/Analytics][I-ACS023072] Event logged. Event name, event params: user_engagement (_e), {

engagement_time_msec (_et) = 381118;

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = UIViewController;

ga_screen_id (_si) = -1105527146961464323;

}

2020-05-17 21:35:44.724507-0400 iMonedas[3249:865578] 6.13.0 - [Firebase/Analytics][I-ACS002002] Measurement timer scheduled to fire in approx. (s): 0.8934959173202515

2020-05-17 21:35:44.724615-0400 iMonedas[3249:865578] 6.13.0 - [Firebase/Analytics][I-ACS023028] Upload task scheduled to be executed in approx. (s): 0.8934959173202515

2020-05-17 21:35:44.724905-0400 iMonedas[3249:865578] 6.13.0 - [Firebase/Analytics][I-ACS023051] Logging event: origin, name, params: auto, app_background (_ab), {

ga_event_origin (_o) = auto;

ga_screen_class (_sc) = UIViewController;

ga_screen_id (_si) = -1105527146961464323;

}

2020-05-17 21:35:44.725731-0400 iMonedas[3249:865578] 6.13.0 - [Firebase/Analytics][I-ACS023073] Debug mode is enabled. Marking event as debug and real-time. Event name, parameters: app_background (_ab), {

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = UIViewController;

ga_screen_id (_si) = -1105527146961464323;

}

2020-05-17 21:35:44.741559-0400 iMonedas[3249:865578] 6.13.0 - [Firebase/Analytics][I-ACS023072] Event logged. Event name, event params: app_background (_ab), {

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = UIViewController;

ga_screen_id (_si) = -1105527146961464323;

}

2020-05-17 21:35:44.750981-0400 iMonedas[3249:865578] 6.13.0 - [Firebase/Analytics][I-ACS023027] Do not schedule an upload task. Task already exists. Will be executed in seconds: 0.8666058778762817

2020-05-17 21:35:44.751028-0400 iMonedas[3249:865578] 6.13.0 - [Firebase/Analytics][I-ACS023033] Starting data upload

2020-05-17 21:35:44.752030-0400 iMonedas[3249:865578] 6.13.0 - [Firebase/Analytics][I-ACS023105] Event is not subject to real-time event count daily limit. Marking an event as real-time. Event name, parameters: user_engagement (_e), {

engagement_time_msec (_et) = 381118;

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = UIViewController;

ga_screen_id (_si) = -1105527146961464323;

}

2020-05-17 21:35:44.753807-0400 iMonedas[3249:865578] 6.13.0 - [Firebase/Analytics][I-ACS023105] Event is not subject to real-time event count daily limit. Marking an event as real-time. Event name, parameters: app_background (_ab), {

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = UIViewController;

ga_screen_id (_si) = -1105527146961464323;

}

2020-05-17 21:35:44.754302-0400 iMonedas[3249:865578] 6.13.0 - [Firebase/Analytics][I-ACS023080] Setting user property. Name, value: lifetime_user_engagement (_lte), 3655745

2020-05-17 21:35:44.754800-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS023087] User property set. Name, value: lifetime_user_engagement (_lte), 3655745

2020-05-17 21:35:44.754989-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS023080] Setting user property. Name, value: session_user_engagement (_se), 3227977

2020-05-17 21:35:44.755173-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS023087] User property set. Name, value: session_user_engagement (_se), 3227977

2020-05-17 21:35:44.756351-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS012018] Saving bundle. size (bytes): 496

2020-05-17 21:35:44.756665-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS023116] Bundle added to the upload queue. BundleID, timestamp (ms): 106, 1589765744618

2020-05-17 21:35:44.768206-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS023038] Uploading events. Elapsed time since last successful upload (s): 379.6905059814453

2020-05-17 21:35:44.768353-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS023039] Measurement data sent to network. Timestamp (ms), data: 1589765744768, <APMPBMeasurementBatch: 0x28127b2a0>

2020-05-17 21:35:44.771214-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS900000] Uploading data. Host: https://app-measurement.com/a

2020-05-17 21:35:44.853675-0400 iMonedas[3249:865578] 6.13.0 - [Firebase/Analytics][I-ACS901006] Received SSL challenge for host. Host: https://app-measurement.com/a

2020-05-17 21:35:44.915263-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS023044] Successful upload. Got network response. Code, size: 204, -1

2020-05-17 21:35:44.917392-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS023027] Do not schedule an upload task. Task already exists. Will be executed in seconds: 0.7001849412918091

2020-05-17 21:35:44.946859-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS023024] No data to upload. Upload task will not be scheduled

2020-05-17 21:35:44.947248-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS002003] Measurement timer canceled

2020-05-17 21:35:44.947560-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS023142] Cancelling background upload task. Task ID : 9

2020-05-17 21:35:46.224639-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS031006] View controller already tracked. Class, ID: UIViewController, -1105527146961464323

2020-05-17 21:35:46.378785-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS033003] Scheduling user engagement timer

2020-05-17 21:35:46.379081-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS002002] Engagement timer scheduled to fire in approx. (s): 3600

2020-05-17 21:35:46.732426-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS031010] Tracking view controller. Class, ID: SFAuthenticationViewController, -1105527146961464322

2020-05-17 21:35:46.734464-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS031006] View controller already tracked. Class, ID: SFAuthenticationViewController, -1105527146961464322

2020-05-17 21:35:46.736650-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS023051] Logging event: origin, name, params: auto, screen_view (_vs), {

ga_event_origin (_o) = auto;

ga_previous_class (_pc) = UIViewController;

ga_previous_id (_pi) = -1105527146961464323;

ga_screen_class (_sc) = SFAuthenticationViewController;

ga_screen_id (_si) = -1105527146961464322;

}

2020-05-17 21:35:46.737247-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS023073] Debug mode is enabled. Marking event as debug and real-time. Event name, parameters: screen_view (_vs), {

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_previous_class (_pc) = UIViewController;

ga_previous_id (_pi) = -1105527146961464323;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = SFAuthenticationViewController;

ga_screen_id (_si) = -1105527146961464322;

}

2020-05-17 21:35:46.757957-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS023072] Event logged. Event name, event params: screen_view (_vs), {

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_previous_class (_pc) = UIViewController;

ga_previous_id (_pi) = -1105527146961464323;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = SFAuthenticationViewController;

ga_screen_id (_si) = -1105527146961464322;

}

2020-05-17 21:35:46.769920-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS002002] Measurement timer scheduled to fire in approx. (s): 0.9625508785247803

2020-05-17 21:35:46.770196-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS023028] Upload task scheduled to be executed in approx. (s): 0.9625508785247803

2020-05-17 21:35:47.797889-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS002001] Measurement timer fired

2020-05-17 21:35:47.798302-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS002003] Measurement timer canceled

2020-05-17 21:35:47.798359-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023033] Starting data upload

2020-05-17 21:35:47.799769-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023105] Event is not subject to real-time event count daily limit. Marking an event as real-time. Event name, parameters: screen_view (_vs), {

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_previous_class (_pc) = UIViewController;

ga_previous_id (_pi) = -1105527146961464323;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = SFAuthenticationViewController;

ga_screen_id (_si) = -1105527146961464322;

}

2020-05-17 21:35:47.808594-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS012018] Saving bundle. size (bytes): 501

2020-05-17 21:35:47.808644-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023116] Bundle added to the upload queue. BundleID, timestamp (ms): 107, 1589765746732

2020-05-17 21:35:47.826836-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023038] Uploading events. Elapsed time since last successful upload (s): 2.911825895309448

2020-05-17 21:35:47.827293-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023039] Measurement data sent to network. Timestamp (ms), data: 1589765747826, <APMPBMeasurementBatch: 0x281260530>

2020-05-17 21:35:47.830703-0400 iMonedas[3249:865435] 6.13.0 - [Firebase/Analytics][I-ACS900000] Uploading data. Host: https://app-measurement.com/a

2020-05-17 21:35:47.914553-0400 iMonedas[3249:865435] 6.13.0 - [Firebase/Analytics][I-ACS901006] Received SSL challenge for host. Host: https://app-measurement.com/a

2020-05-17 21:35:47.974707-0400 iMonedas[3249:865543] 6.13.0 - [Firebase/Analytics][I-ACS023044] Successful upload. Got network response. Code, size: 204, -1

2020-05-17 21:35:47.977677-0400 iMonedas[3249:865543] 6.13.0 - [Firebase/Analytics][I-ACS002002] Measurement timer scheduled to fire in approx. (s): -0.2453638315200806

2020-05-17 21:35:47.977732-0400 iMonedas[3249:865543] 6.13.0 - [Firebase/Analytics][I-ACS023028] Upload task scheduled to be executed in approx. (s): -0.2453638315200806

2020-05-17 21:35:48.010022-0400 iMonedas[3249:865435] 6.13.0 - [Firebase/Analytics][I-ACS023024] No data to upload. Upload task will not be scheduled

2020-05-17 21:35:48.010161-0400 iMonedas[3249:865435] 6.13.0 - [Firebase/Analytics][I-ACS002003] Measurement timer canceled

2020-05-17 21:36:04.055147-0400 iMonedas[3249:865700] 6.13.0 - [Firebase/Analytics][I-ACS033003] Scheduling user engagement timer

2020-05-17 21:36:04.056403-0400 iMonedas[3249:865700] 6.13.0 - [Firebase/Analytics][I-ACS002003] Engagement timer canceled

2020-05-17 21:36:04.056444-0400 iMonedas[3249:865700] 6.13.0 - [Firebase/Analytics][I-ACS002002] Engagement timer scheduled to fire in approx. (s): 3600

2020-05-17 21:36:04.056753-0400 iMonedas[3249:865700] 6.13.0 - [Firebase/Analytics][I-ACS002003] Engagement timer canceled

2020-05-17 21:36:04.056798-0400 iMonedas[3249:865700] 6.13.0 - [Firebase/Analytics][I-ACS023144] App will resign active state. Scheduling data upload

2020-05-17 21:36:04.056902-0400 iMonedas[3249:865700] 6.13.0 - [Firebase/Analytics][I-ACS023145] Background task started. Task ID: 17

2020-05-17 21:36:04.086779-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023051] Logging event: origin, name, params: auto, user_engagement (_e), {

engagement_time_msec (_et) = 17619;

ga_event_origin (_o) = auto;

ga_screen_class (_sc) = SFAuthenticationViewController;

ga_screen_id (_si) = -1105527146961464322;

}

2020-05-17 21:36:04.110488-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023073] Debug mode is enabled. Marking event as debug and real-time. Event name, parameters: user_engagement (_e), {

engagement_time_msec (_et) = 17619;

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = SFAuthenticationViewController;

ga_screen_id (_si) = -1105527146961464322;

}

2020-05-17 21:36:04.432805-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023072] Event logged. Event name, event params: user_engagement (_e), {

engagement_time_msec (_et) = 17619;

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = SFAuthenticationViewController;

ga_screen_id (_si) = -1105527146961464322;

}

2020-05-17 21:36:04.546580-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS002002] Measurement timer scheduled to fire in approx. (s): 0.4351770877838135

2020-05-17 21:36:04.547051-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023028] Upload task scheduled to be executed in approx. (s): 0.4351770877838135

2020-05-17 21:36:04.547231-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023051] Logging event: origin, name, params: auto, app_background (_ab), {

ga_event_origin (_o) = auto;

ga_screen_class (_sc) = SFAuthenticationViewController;

ga_screen_id (_si) = -1105527146961464322;

}

2020-05-17 21:36:04.547543-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023073] Debug mode is enabled. Marking event as debug and real-time. Event name, parameters: app_background (_ab), {

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = SFAuthenticationViewController;

ga_screen_id (_si) = -1105527146961464322;

}

2020-05-17 21:36:04.562545-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023072] Event logged. Event name, event params: app_background (_ab), {

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = SFAuthenticationViewController;

ga_screen_id (_si) = -1105527146961464322;

}

2020-05-17 21:36:04.636776-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023027] Do not schedule an upload task. Task already exists. Will be executed in seconds: 0.3573731184005737

2020-05-17 21:36:04.636825-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023033] Starting data upload

2020-05-17 21:36:04.643650-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023105] Event is not subject to real-time event count daily limit. Marking an event as real-time. Event name, parameters: user_engagement (_e), {

engagement_time_msec (_et) = 17619;

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = SFAuthenticationViewController;

ga_screen_id (_si) = -1105527146961464322;

}

2020-05-17 21:36:04.647799-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023105] Event is not subject to real-time event count daily limit. Marking an event as real-time. Event name, parameters: app_background (_ab), {

ga_debug (_dbg) = 1;

ga_event_origin (_o) = auto;

ga_realtime (_r) = 1;

ga_screen_class (_sc) = SFAuthenticationViewController;

ga_screen_id (_si) = -1105527146961464322;

}

2020-05-17 21:36:04.647955-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023080] Setting user property. Name, value: lifetime_user_engagement (_lte), 3673364

2020-05-17 21:36:04.648009-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023087] User property set. Name, value: lifetime_user_engagement (_lte), 3673364

2020-05-17 21:36:04.648049-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023080] Setting user property. Name, value: session_user_engagement (_se), 3245596

2020-05-17 21:36:04.648728-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023087] User property set. Name, value: session_user_engagement (_se), 3245596

2020-05-17 21:36:04.649845-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS012018] Saving bundle. size (bytes): 509

2020-05-17 21:36:04.650085-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023116] Bundle added to the upload queue. BundleID, timestamp (ms): 108, 1589765763981

2020-05-17 21:36:04.737355-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023038] Uploading events. Elapsed time since last successful upload (s): 16.75868272781372

2020-05-17 21:36:04.738179-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023039] Measurement data sent to network. Timestamp (ms), data: 1589765764731, <APMPBMeasurementBatch: 0x281260700>

2020-05-17 21:36:04.740242-0400 iMonedas[3249:865700] 6.13.0 - [Firebase/Analytics][I-ACS900000] Uploading data. Host: https://app-measurement.com/a

(lldb)