Posts

Post not yet marked as solved
0 Replies
1.2k Views
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.plist2020-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 on2020-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/9vSsPb2020-05-17 21:29:23.300625-0400 iMonedas[3249:864463] 6.13.0 - [GULReachability][I-REA902003] Monitoring the network status2020-05-17 21:29:23.301067-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS023007] Analytics v.60106000 started2020-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 enabled2020-05-17 21:29:23.331627-0400 iMonedas[3249:864469] Deleted assets and updates from SQLite in 55.970073 ms2020-05-17 21:29:23.366686-0400 iMonedas[3249:864464] Deleted 1 assets from disk in 34.584999 ms2020-05-17 21:29:23.366785-0400 iMonedas[3249:864464] Retried deleting assets from disk in 0.000954 ms2020-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.plist2020-05-17 21:29:23.484584-0400 iMonedas[3249:864459] 6.13.0 - [GULReachability][I-REA902004] Network status has changed. Code:2, status:Connected2020-05-17 21:29:23.486776-0400 iMonedas[3249:864459] 6.13.0 - [Firebase/Analytics][I-ACS031010] Tracking view controller. Class, ID: UIViewController, -11055271469614643232020-05-17 21:29:23.487100-0400 iMonedas[3249:864459] 6.13.0 - [Firebase/Analytics][I-ACS031006] View controller already tracked. Class, ID: UIViewController, -11055271469614643232020-05-17 21:29:23.489126-0400 iMonedas[3249:864459] 6.13.0 - [Firebase/Analytics][I-ACS029014] Successfully parsed a configuration. Version: 15896928659782902020-05-17 21:29:23.489697-0400 iMonedas[3249:864475] 6.13.0 - [Firebase/Analytics][I-ACS023016] Analytics is ready to receive events2020-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 scheduled2020-05-17 21:29:23.508811-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS033003] Scheduling user engagement timer2020-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): 36002020-05-17 21:29:23.513018-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS023012] Analytics enabled2020-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.82743406295776372020-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.82743406295776372020-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=31460503032020-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=31460503032020-05-17 21:29:24.427814-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS002001] Measurement timer fired2020-05-17 21:29:24.428015-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS002003] Measurement timer canceled2020-05-17 21:29:24.428302-0400 iMonedas[3249:864478] 6.13.0 - [Firebase/Analytics][I-ACS023033] Starting data upload2020-05-17 21:29:24.429486-0400 iMonedas[3249:864475] 6.13.0 - [Firebase/Analytics][I-ACS023037] No data to upload2020-05-17 21:29:24.429893-0400 iMonedas[3249:864475] 6.13.0 - [Firebase/Analytics][I-ACS023126] Fetching configuration from the server2020-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=601062020-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=601062020-05-17 21:29:24.820977-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS023127] Fetched configuration. Status code: 3042020-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: 3042020-05-17 21:29:24.838878-0400 iMonedas[3249:864463] 6.13.0 - [Firebase/Analytics][I-ACS023033] Starting data upload2020-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): 4702020-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, 15897653634012020-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.19794487953192020-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/a2020-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/a2020-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, -12020-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.67787897586822512020-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.67787897586822512020-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 scheduled2020-05-17 21:29:25.101342-0400 iMonedas[3249:864459] 6.13.0 - [Firebase/Analytics][I-ACS002003] Measurement timer canceled2020-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=3918688422020-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=3918688422020-05-17 21:35:44.639274-0400 iMonedas[3249:865543] 6.13.0 - [Firebase/Analytics][I-ACS033003] Scheduling user engagement timer2020-05-17 21:35:44.639639-0400 iMonedas[3249:865543] 6.13.0 - [Firebase/Analytics][I-ACS002003] Engagement timer canceled2020-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): 36002020-05-17 21:35:44.640045-0400 iMonedas[3249:865543] 6.13.0 - [Firebase/Analytics][I-ACS002003] Engagement timer canceled2020-05-17 21:35:44.640189-0400 iMonedas[3249:865543] 6.13.0 - [Firebase/Analytics][I-ACS023144] App will resign active state. Scheduling data upload2020-05-17 21:35:44.640379-0400 iMonedas[3249:865543] 6.13.0 - [Firebase/Analytics][I-ACS023145] Background task started. Task ID: 92020-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.89349591732025152020-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.89349591732025152020-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.86660587787628172020-05-17 21:35:44.751028-0400 iMonedas[3249:865578] 6.13.0 - [Firebase/Analytics][I-ACS023033] Starting data upload2020-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), 36557452020-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), 36557452020-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), 32279772020-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), 32279772020-05-17 21:35:44.756351-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS012018] Saving bundle. size (bytes): 4962020-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, 15897657446182020-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.69050598144532020-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/a2020-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/a2020-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, -12020-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.70018494129180912020-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 scheduled2020-05-17 21:35:44.947248-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS002003] Measurement timer canceled2020-05-17 21:35:44.947560-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS023142] Cancelling background upload task. Task ID : 92020-05-17 21:35:46.224639-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS031006] View controller already tracked. Class, ID: UIViewController, -11055271469614643232020-05-17 21:35:46.378785-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS033003] Scheduling user engagement timer2020-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): 36002020-05-17 21:35:46.732426-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS031010] Tracking view controller. Class, ID: SFAuthenticationViewController, -11055271469614643222020-05-17 21:35:46.734464-0400 iMonedas[3249:865576] 6.13.0 - [Firebase/Analytics][I-ACS031006] View controller already tracked. Class, ID: SFAuthenticationViewController, -11055271469614643222020-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.96255087852478032020-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.96255087852478032020-05-17 21:35:47.797889-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS002001] Measurement timer fired2020-05-17 21:35:47.798302-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS002003] Measurement timer canceled2020-05-17 21:35:47.798359-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023033] Starting data upload2020-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): 5012020-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, 15897657467322020-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.9118258953094482020-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/a2020-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/a2020-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, -12020-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.24536383152008062020-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.24536383152008062020-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 scheduled2020-05-17 21:35:48.010161-0400 iMonedas[3249:865435] 6.13.0 - [Firebase/Analytics][I-ACS002003] Measurement timer canceled2020-05-17 21:36:04.055147-0400 iMonedas[3249:865700] 6.13.0 - [Firebase/Analytics][I-ACS033003] Scheduling user engagement timer2020-05-17 21:36:04.056403-0400 iMonedas[3249:865700] 6.13.0 - [Firebase/Analytics][I-ACS002003] Engagement timer canceled2020-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): 36002020-05-17 21:36:04.056753-0400 iMonedas[3249:865700] 6.13.0 - [Firebase/Analytics][I-ACS002003] Engagement timer canceled2020-05-17 21:36:04.056798-0400 iMonedas[3249:865700] 6.13.0 - [Firebase/Analytics][I-ACS023144] App will resign active state. Scheduling data upload2020-05-17 21:36:04.056902-0400 iMonedas[3249:865700] 6.13.0 - [Firebase/Analytics][I-ACS023145] Background task started. Task ID: 172020-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.43517708778381352020-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.43517708778381352020-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.35737311840057372020-05-17 21:36:04.636825-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS023033] Starting data upload2020-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), 36733642020-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), 36733642020-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), 32455962020-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), 32455962020-05-17 21:36:04.649845-0400 iMonedas[3249:865582] 6.13.0 - [Firebase/Analytics][I-ACS012018] Saving bundle. size (bytes): 5092020-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, 15897657639812020-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.758682727813722020-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)
Posted Last updated
.