Coder Social home page Coder Social logo

hansemannn / titanium-firebase-core Goto Github PK

View Code? Open in Web Editor NEW
31.0 13.0 23.0 164.43 MB

Use the Firebase Core SDK in the Titanium SDK 🚀

License: Other

JavaScript 0.01% Objective-C 75.01% Java 0.30% C 15.65% C++ 9.03%
firebase firebase-core axway titanium native javascript titanium-firebase

titanium-firebase-core's Introduction

Firebase Core - Titanium Module

Use the native Firebase SDK in Axway Titanium. This repository is part of the Titanium Firebase project. This module is required for iOS but not needed anymore for Android. Since Ti 9.0.0 gradle will automatically read the configuration (see Firebase-Core)

Supporting this effort

The whole Firebase support in Titanium is developed and maintained by the community (@hansemannn and @m1ga). To keep this project maintained and be able to use the latest Firebase SDK's, please see the "Sponsor" button of this repository, thank you!

Requirements

  • Titanium SDK 10.0.0+

Download

Installation

Read the Firebase-Core install part if you set up a new project.

API's

FirebaseCore

Methods

configure() -> Boolean

Configure Firebase without additional parameters.

Returns false if it was already configured or if there was an error.

configure(parameters)

Configure Firebase with configuration parameters:

Name Type Component Platform
file String *

By passing the file property, you can give a location to the Firebase plist file (usually named "GoogleService-Info.plist"), which contains all necessary properties for your Firebase project. This makes all other properties unnecessary. For Android: place the file in /app/assets/android/ and pass just the filename.

Or you can configure Firebase without a file by passing these parameters:

Name Type Component Platform
googleAppID String *
GCMSenderID String Cloud Messaging *
APIKey String Auth *
projectID String *
databaseURL String Real Time Database *
storageBucket String Storage Bucket *
bundleID String iOS
clientID String iOS
trackingID String iOS
androidClientID String iOS
deepLinkURLScheme String iOS
logLevel LOG_LEVEL_* [ERROR|WARNING|NOTICE|INFO|DEBUG] iOS
applicationID String Analytics Android

Examples

// Require the Firebase Core module
var FirebaseCore = require('firebase.core');

// Configure your Firebase API's (only required once for all)

FirebaseCore.configure();	// default google-services.json/GoogleService-Info.plist will be used

// alternative way:

FirebaseCore.configure({
  APIKey: "AIYasZBtfJh..........",
  projectID: "test-12345",
  storageBucket: "test-12345.appspot.com",
  applicationID: "1:12345678890:android:abc123efg456"
});

// alternative way:
FirebaseCore.configure({
  file: "filename.json"
});

Build

cd [ios|android]
appc run -p [ios|android] --build-only

iOS notes

If you are also using Ti.GoogleSignIn you will probably have a duplicate symbols error. Both Ti.GoogleSignIn and this module share some common dependencies. In order to solve this conflict, remove the GTMSessionFetcher.framework and GoogleToolboxForMac.framework files from <YOUR_PROJECT_DIR>/modules/iphone/firebase.core/<VERSION>/platform and rebuild your app.

Android notes

check firebase-core for more information.

Legal

This module is Copyright (c) 2017-Present by Hans Knöchel. All Rights Reserved.

titanium-firebase-core's People

Contributors

andreavitale avatar astrovic avatar fahad86 avatar francisco-alvarado-espol avatar hansemannn avatar luigivitelli23 avatar m1ga avatar r4mpancy avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

titanium-firebase-core's Issues

Firebase core and firebase analytics module are not working in android build

Hi,

I have installed both firebase core and firebase analytics module in my app. IOS app is working fine but android build is giving following error.

[ERROR] : Failed to run dexer:
[ERROR] :
[ERROR] : Uncaught translation error: java.lang.IllegalArgumentException: already added: Lcom/google/firebase/analytics/FirebaseAnalytics;
[ERROR] : Uncaught translation error: java.lang.IllegalArgumentException: already added: Lcom/google/firebase/analytics/FirebaseAnalytics$Event;
[ERROR] : Uncaught translation error: java.lang.IllegalArgumentException: already added: Lcom/google/firebase/analytics/FirebaseAnalytics$Param;
[ERROR] : Uncaught translation error: java.lang.IllegalArgumentException: already added: Lcom/google/firebase/analytics/FirebaseAnalytics$UserProperty;
[ERROR] : Uncaught translation error: java.lang.IllegalArgumentException: already added: Lcom/google/android/gms/measurement/AppMeasurement;
[ERROR] : Uncaught translation error: java.lang.IllegalArgumentException: already added: Lcom/google/android/gms/measurement/AppMeasurement$ConditionalUserProperty;
[ERROR] : Uncaught translation error: java.lang.IllegalArgumentException: already added: Lcom/google/android/gms/measurement/AppMeasurement$Event;
[ERROR] : Uncaught translation error: java.lang.IllegalArgumentException: already added: Lcom/google/android/gms/measurement/AppMeasurement$EventInterceptor;
[ERROR] : Uncaught translation error: java.lang.IllegalArgumentException: already added: Lcom/google/android/gms/measurement/AppMeasurement$OnEventListener;
[ERROR] :
[ERROR] : UNEXPECTED TOP-LEVEL EXCEPTION:
[ERROR] : java.lang.RuntimeException: Translation has been interrupted
[ERROR] : at com.android.dx.command.dexer.Main.processAllFiles(Main.java:614)
[ERROR] : at com.android.dx.command.dexer.Main.runMultiDex(Main.java:365)
[ERROR] : at com.android.dx.command.dexer.Main.runDx(Main.java:286)
[ERROR] : at com.android.dx.command.dexer.Main.main(Main.java:244)
[ERROR] : at com.android.dx.command.Main.main(Main.java:95)
[ERROR] : Caused by: java.lang.InterruptedException: Too many errors
[ERROR] : at com.android.dx.command.dexer.Main.processAllFiles(Main.java:606)
[ERROR] : ... 4 more
[ERROR] Application Installer abnormal process termination. Process exit value was 1

App is using following versions
Titanium sdk: 8.3.1.GA
Firebase core: 3.0.0
Firebase analytics: 2.1.2
ti.playservices : 16.1.3
ti.cloudpush: 5.1.2
ti.admob: 4.3.0
ti.map: 3.1.1

Mac support

Latest iOS version has no Mac support. Could this be added?

Doesn't work with Titanium 7.0.0 GA (Android 2.0.0)

I have a basic hello world app, running on Titanium SDK: 7.0.0.GA
It's only other dependency for modules is ti.cloud.

The only version of Firebase Core that seems to work on this version of the SDK seems to be: https://github.com/hansemannn/titanium-firebase-core/releases/tag/android-2.0.0

(I understand this is a pre-release).

However, this simple application gave the following error on start-up:

[ERROR] TiApplication: (main) [12,503] Sending event: exception on thread: main msg:java.lang.UnsatisfiedLinkError: Couldn't load firebase.core from loader dalvik.system.PathClassLoader[De
xPathList[[zip file "/data/app/com.yahyauddin.example-2.apk"],nativeLibraryDirectories=[/data/app-lib/com.yahyauddin.example-2, /vendor/lib, /system/lib]]]: findLibrary returned null; Tita
nium 7.0.0,2017/12/05 13:30,undefined                                                                                                                                                       
[ERROR] TiApplication: java.lang.UnsatisfiedLinkError: Couldn't load firebase.core from loader dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.yahyauddin.example-2.apk"]
,nativeLibraryDirectories=[/data/app-lib/com.yahyauddin.example-2, /vendor/lib, /system/lib]]]: findLibrary returned null                                                                   
[ERROR] TiApplication:  at java.lang.Runtime.loadLibrary(Runtime.java:358)                                                                                                                  
[ERROR] TiApplication:  at java.lang.System.loadLibrary(System.java:526)                                                                                                                    
[ERROR] TiApplication:  at org.appcelerator.kroll.runtime.v8.V8Runtime.loadExternalModules(V8Runtime.java:151)                                                                              
[ERROR] TiApplication:  at org.appcelerator.kroll.runtime.v8.V8Runtime.initRuntime(V8Runtime.java:118)                                                                                      
[ERROR] TiApplication:  at org.appcelerator.kroll.KrollRuntime.doInit(KrollRuntime.java:205)                                                                                                
[ERROR] TiApplication:  at org.appcelerator.kroll.KrollRuntime$KrollRuntimeThread.run(KrollRuntime.java:114)                                                                                
[ERROR] TiApplication:  at org.appcelerator.kroll.KrollRuntime.init(KrollRuntime.java:136)                                                                                                  
[ERROR] TiApplication:  at com.yahyauddin.example.ExampleApplication.onCreate(ExampleApplication.java:47)                                                                                   
[ERROR] TiApplication:  at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1007)                                                                                   
[ERROR] TiApplication:  at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4344)                                                                                       
[ERROR] TiApplication:  at android.app.ActivityThread.access$1500(ActivityThread.java:135)                                                                                                  
[ERROR] TiApplication:  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1256)                                                                                             
[ERROR] TiApplication:  at android.os.Handler.dispatchMessage(Handler.java:102)                                                                                                             
[ERROR] TiApplication:  at android.os.Looper.loop(Looper.java:136)                                                                                                                          
[ERROR] TiApplication:  at android.app.ActivityThread.main(ActivityThread.java:5017)                                                                                                        
[ERROR] TiApplication:  at java.lang.reflect.Method.invokeNative(Native Method)                                                                                                             
[ERROR] TiApplication:  at java.lang.reflect.Method.invoke(Method.java:515)                                                                                                                 
[ERROR] TiApplication:  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:779)                                                                                  
[ERROR] TiApplication:  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595)                                                                                                     
[ERROR] TiApplication:  at dalvik.system.NativeStart.main(Native Method)

How do I fix this issue?

Gittio ?

Can you add the gittio method to install your Firebase's modules?
Thanks =)

Errors running firebase.core v2 on Android: "Failed to resolve target intent service"

I am using Titanium 7.0.0 GA and Fire Base Core/ Analytics v2 for Android.

I have the following simple code in alloy.js:

var FirebaseCore = require("firebase.core");
FirebaseCore.configure({
	applicationID: "1:0123456789012:android:XXXXXXXXXXXXXXXX" // Assuming this is the App ID
});

However, I get the following errors on the console:

[ERROR] FirebaseInstanceId: Failed to resolve target intent service, skipping classname enforceme
nt
[ERROR] FirebaseInstanceId: Error while delivering the message: ServiceIntent not found.

Default FirebaseApp is not initialized

win.addEventListener('open', function() {
	FirebaseCore.configure({
		file:'google-services.json'
	});
});

This simple code above generates:

[ERROR] :  TiBaseActivity: (main) [43,43] Error dispatching lifecycle event: Default FirebaseApp is not initialized in this process de.appwerft.firebauseauth. Make sure to call FirebaseApp.initializeApp(Context) first.
[ERROR] :  TiBaseActivity: java.lang.IllegalStateException: Default FirebaseApp is not initialized in this process de.appwerft.firebauseauth. Make sure to call FirebaseApp.initializeApp(Context) first.
[ERROR] :  TiBaseActivity: 	at com.google.firebase.FirebaseApp.getInstance(Unknown Source:60)
[ERROR] :  TiBaseActivity: 	at com.google.firebase.auth.FirebaseAuth.getInstance(Unknown Source:0)
[ERROR] :  TiBaseActivity: 	at firebase.auth.TitaniumFirebaseAuthModule.onStart(TitaniumFirebaseAuthModule.java:94)
[ERROR] :  TiBaseActivity: 	at org.appcelerator.titanium.TiLifecycle.fireLifecycleEvent(TiLifecycle.java:150)
[ERROR] :  TiBaseActivity: 	at org.appcelerator.titanium.TiBaseActivity.onStart(TiBaseActivity.java:1378)

Module does not work with ti.map (v3.3.1, v3.3.0) on Android

This module does not seem to work with version 3.3.1 or v3.3.0 of ti.map on Android.

I created a new plain app with:

    $ appc new

In my tiapp.xml I have the following modules:

<modules>
            <module platform="android" version="3.3.1">ti.map</module>
	    <module platform="android">firebase.core</module>
	    <module platform="commonjs">ti.cloud</module>
</modules>

Note that at the time of writing, version 3.3.1 is the latest version of ti.map.
I am also using SDK 6.3.0.GA.

I did not modify the sample app in any other way.

When I try to build the app using:

$ appc run -p android -T device

I get the following error:

[ERROR] Failed to run dexer:
[ERROR]
[ERROR] Uncaught translation error: java.lang.IllegalArgumentException: already added: Lcom/google/firebase/zza;
[ERROR] 1 error; aborting

There does not seem to be any issues with v3.0.1 of ti.map.
However, I cannot down-grade as there is quite a few issues with the older version of ti.map.

Please help, as we need FireBase installed on our app as soon as possible!

Android - App Crash on Open

Hello!
Using Firebase-Core 5.0.0, APPC SDK 8.1.0.GA and PlayServices 16.1.4, the app crashes and doesn't even open, so there's no log or information. Help please 🙏

Configure crashes when sending integer instead of string

Function configure() results in an error when I pass GCMSenderID as an integer:

var fcc = require('firebase.core');
        fcc.configure({
            APIKey: 'aaabbbccc',
            projectID: 'proj-id',
            googleAppID: 'a:bbbbasdfcccce',
            GCMSenderID: 2221122211239
        });

this is solved by:

GCMSenderID: '2221122211239'

I will create a PR for the readme, but a code fix might be handy too.

Admob ads not showing on Android wrong firebase version SDK cited

Hello I am using appcelerator studio version 7.1.1.GA and am porting an iphone app to android for a client. I tried a bunch of things but am unable to get admob ads to show up in the app and the error message I get is ==>

[WARN] : Ads: Invoke Firebase method getInstance error. [WARN] : Ads: The Google Mobile Ads SDK will not integrate with Firebase. Admob/Firebase integration requires the latest Firebase SDK jar, but Firebase SDK is either missing or out of date

I am using version 2.2.0 of the 'firebase.core' module, version 4.0.0 of the 'ti.admob' module, version 11.0.40 of ti.playservices (whatever is included with Appcelerator Studio I believe) and version 4.2.0 of the 'ti.map' module. I am also using version 2.0.0 of the ti.googlesignin module. Everything else the map and google signin work fine. I tried a bunch of different things including ti.playservices, not including it and also when I had version 4.1.0 of the 'ti.admob' module installed I was getting dexer linking errors which did not seem right and when I reverted to the 4.0.0 version of 'ti.admob' the linker errors went away.

This is the last thing I need to do to release this app to the Google Play Store I have managed to get everything else is working but it would be a bummer not to have ads in the app. I really don't want to disappoint my client.

Didn't find class com.google.android.gms.common.internal.zzbo

Hello my ti.playservices version was 11.0.40 I upgraded it to 16.1.2. After that I am getting error as below I have tried 16.1.0 too result is same. My jira ticket is https://jira.appcelerator.org/browse/AC-6141

02-27 13:00:30.485 12645 12645 E AndroidRuntime: FATAL EXCEPTION: main
02-27 13:00:30.485 12645 12645 E AndroidRuntime: Process: com.sizebiz.just.live.basketball, PID: 12645
02-27 13:00:30.485 12645 12645 E AndroidRuntime: java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/common/internal/zzbo;
02-27 13:00:30.485 12645 12645 E AndroidRuntime: 	at com.google.firebase.provider.FirebaseInitProvider.attachInfo(Unknown Source:2)
02-27 13:00:30.485 12645 12645 E AndroidRuntime: 	at android.app.ActivityThread.installProvider(ActivityThread.java:6414)
02-27 13:00:30.485 12645 12645 E AndroidRuntime: 	at android.app.ActivityThread.installContentProviders(ActivityThread.java:5961)
02-27 13:00:30.485 12645 12645 E AndroidRuntime: 	at android.app.ActivityThread.handleBindApplication(ActivityThread.java:5867)
02-27 13:00:30.485 12645 12645 E AndroidRuntime: 	at android.app.ActivityThread.access$1100(ActivityThread.java:200)
02-27 13:00:30.485 12645 12645 E AndroidRuntime: 	at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1651)
02-27 13:00:30.485 12645 12645 E AndroidRuntime: 	at android.os.Handler.dispatchMessage(Handler.java:106)
02-27 13:00:30.485 12645 12645 E AndroidRuntime: 	at android.os.Looper.loop(Looper.java:193)
02-27 13:00:30.485 12645 12645 E AndroidRuntime: 	at android.app.ActivityThread.main(ActivityThread.java:6692)
02-27 13:00:30.485 12645 12645 E AndroidRuntime: 	at java.lang.reflect.Method.invoke(Native Method)
02-27 13:00:30.485 12645 12645 E AndroidRuntime: 	at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:493)
02-27 13:00:30.485 12645 12645 E AndroidRuntime: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)
02-27 13:00:30.485 12645 12645 E AndroidRuntime: Caused by: java.lang.ClassNotFoundException: Didn't find class "com.google.android.gms.common.internal.zzbo" on path: DexPathList[[zip file "/system/framework/org.apache.http.legacy.boot.jar", zip file "/data/app/com.sizebiz.just.live.basketball-Rn8Kb-p0JpC_xcova1olLg==/base.apk"],nativeLibraryDirectories=[/data/app/com.sizebiz.just.live.basketball-Rn8Kb-p0JpC_xcova1olLg==/lib/arm64, /data/app/com.sizebiz.just.live.basketball-Rn8Kb-p0JpC_xcova1olLg==/base.apk!/lib/arm64-v8a, /system/lib64]]
02-27 13:00:30.485 12645 12645 E AndroidRuntime: 	at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:134)
02-27 13:00:30.485 12645 12645 E AndroidRuntime: 	at java.lang.ClassLoader.loadClass(ClassLoader.java:379)
02-27 13:00:30.485 12645 12645 E AndroidRuntime: 	at java.lang.ClassLoader.loadClass(ClassLoader.java:312)
02-27 13:00:30.485 12645 12645 E AndroidRuntime: 	... 12 more
02-27 13:00:30.487  2047  9545 W ActivityManager:   Force finishing activity com.sizebiz.just.live.basketball/.JustLiveBasketballActivity

My project's all module list as below

<modules>
<module platform="android">ti.playservices</module>
<module platform="iphone" version="1.0">ti.module.share</module>
<module platform="android" version="1.0.0">bencoding.android.tools</module>
<module platform="iphone" version="2.4.0">ti.admob</module>
<module platform="iphone" version="1.5.0">av.imageview</module>
<module platform="android" version="3.3.0">av.imageview</module>
<module platform="iphone" version="2.0.1">firebase.cloudmessaging</module>
<module platform="android" version="1.3.2">firebase.cloudmessaging</module>
<module platform="iphone" version="2.1.0">firebase.core</module>
<module platform="android" version="3.0.0">firebase.core</module>
<module platform="android" version="4.2.0">ti.android.admob</module>
<module platform="android" version="4.0.1">ti.ga</module>
<module platform="iphone" version="3.0.2">ti.ga</module>
</modules>

9.0.1 failing

After switching to Core 9.0.1 it calls this error: (using latest of analytics)
[ERROR] ti:inspectFrameworks: Duplicate framework FBLPromises detected at these paths:
[ERROR] ti:inspectFrameworks:
[ERROR] ti:inspectFrameworks: /Users/joe/Desktop/aaa/xxx/modules/iphone/firebase.analytics/8.0.0/platform/FBLPromises.xcframework
[ERROR] ti:inspectFrameworks: /Users/joe/Desktop/aaa/xxx/modules/iphone/firebase.core/9.0.1/platform/FBLPromises.xcframework
[ERROR] ti:inspectFrameworks:
[ERROR] ti:inspectFrameworks: Please resolve this conflict by choosing one of the above frameworks that you want to keep and remove the other before continuing.
Testing on 12.1.2.GA and latest RC 12.2.x

iOS: Build error

Hi,

I'm trying to get cloud messaging to work on iOS, but when I add the firebase-core module for iOS and try to run the app, I receive the following error:

[INFO]  Encrypting JavaScript files
[INFO]  Writing i18n files
[INFO]  Processing Titanium symbols
[INFO]  Removing files
[INFO]  Optimizing .plist and .png files
[INFO]  Invoking xcodebuild
[ERROR] ** BUILD FAILED **
[ERROR] The following build commands failed:
[ERROR]         Ld /Users/michielve/Documents/titaniumapps/gs-lemcheck2/build/iphone/build/Intermediates/Lemcheck2.build/Debug-iphoneos/Lemcheck2.build/Objects-normal/armv7/Lemcheck2 normal armv7
[ERROR] (1 failure)

I run my app with:

appc run -p ios -T device

Module section in tiapp.xml file (this points to the 2.1.0 version of firebase.core module):

<modules>
  <module platform="ios">firebase.core</module>
</modules>

Other setup information:

Operating System
  Name                        = Mac OS X
  Version                     = 10.14.1
  Architecture                = 64bit
  # CPUs                      = 4
  Memory                      = 8.0GB

Node.js
  Node.js Version             = 10.14.1
  npm Version                 = 6.4.1

Appcelerator CLI
  Installer                   = 4.2.13
  Core Package                = 7.0.8

Titanium CLI
  CLI Version                 = 5.1.1
  node-appc Version           = 0.2.44

SDK 7.5.0.GA

Does anyone has an idea what could be the issue? Without this module, the app runs okay. On Android everything works okay also with this module.

iOS: could not build using version 8.0.0 --> ld: symbol(s) not found for architecture arm64

Environment:

──────────────────┤ Check Environment ├───────────────────

Node.js
  ✓  node               installed (v16.13.2)
  ✓  npm                installed (v8.1.2)
 
Titanium CLI
  ✓  cli                up-to-date (v6.1.1)
 
Titanium CLI Dependencies
  ✓  async              up-to-date (v3.2.4)
  ✓  colors             up-to-date (v1.4.0)
  ✓  fields             up-to-date (v0.1.24)
  ✓  got                up-to-date (v11.8.6)
  ✓  humanize           up-to-date (v0.0.9)
  ✓  node-appc          up-to-date (v1.1.6)
  ✓  request            up-to-date (v2.88.2)
  ✓  sprintf            up-to-date (v0.1.5)
  ✓  tmp                up-to-date (v0.2.1)
  ✓  winston            up-to-date (v2.4.6)
  ✓  yauzl              up-to-date (v2.10.0)
 
Titanium SDK
  ✓  latest sdk         installed (v9.3.2.GA)
  ✓  selected sdk       up-to-date (v9.3.2.GA)
 
Mac OS X Environment
  ✓  CLI Tools          installed
 
iOS Environment
  ✓  Xcode              installed (13.4.1)
  ✓  iOS SDK            installed (15.5)
  ✓  WWDR cert          installed
  ✓  developer cert     installed (1 found)
  !  distribution cert  not found
  ✓  dev provisioning   installed (19 found)
  ✓  dist provisioning  installed (4 found)
 
Android Environment
  ✓  sdk                installed (/Users/andresonnenburg/Library/android-sdk-macosx)
  ✓  tools              installed (v26.1.1)
  !  platform tools     untested version 34.0.1; may or may not work
  ✓  build tools        installed (v31.0.0)
  ✓  adb                installed /Users/andresonnenburg/Library/android-sdk-macosx/platform-tools/adb
  ✓  emulator           installed /Users/andresonnenburg/Library/android-sdk-macosx/tools/emulator
  ✓  targets            installed (8 found)
  ✓  avds               installed (1 found)
  !  ndk                Android NDK not found
 
Java Development Kit
  ✓  jdk                installed (v11.0.17)
  ✓  java               installed /Library/Java/JavaVirtualMachines/jdk-11.0.17.jdk/Contents/Home/bin/java
  ✓  javac              installed /Library/Java/JavaVirtualMachines/jdk-11.0.17.jdk/Contents/Home/bin/javac
  ✓  keytool            installed /Library/Java/JavaVirtualMachines/jdk-11.0.17.jdk/Contents/Home/bin/keytool
  ✓  jarsigner          installed /Library/Java/JavaVirtualMachines/jdk-11.0.17.jdk/Contents/Home/bin/jarsigner
 
Intel® Hardware Accelerated Execution Manager (HAXM)
  ✓  compatible         
  !  installed          not found; install HAXM to use Android x86 emulator
 
Network
  ✓  online             
  -  no proxy server configured 
  ✓  Network connection test 
  ✓  Java-based connection test 
 
Directory Permissions
  ✓  home directory     
  ✓  titanium config directory 
  ✓  titanium sdk install directory 
  ✓  workspace directory 
  ✓  temp directory  

ti build --platform ios --device-id mydeviceid --deploy-type development --force-copy --device-family iphone --target device

I got this error with version 8.0.0 ( both core & cloudmessaging) . With previous version (7.2.0) it goes ok.

[TRACE] ld: symbol(s) not found for architecture arm64
[TRACE] clang: error: linker command failed with exit code 1 (use -v to see invocation)

[ERROR] 2023-03-24 20:37:57.990 xcodebuild[33858:723410] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionSentinelHostApplications for extension Xcode.DebuggerFoundation.AppExtensionHosts.watchOS of plug-in com.apple.dt.IDEWatchSupportCore
[ERROR] 2023-03-24 20:37:57.991 xcodebuild[33858:723410] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionPointIdentifierToBundleIdentifier for extension Xcode.DebuggerFoundation.AppExtensionToBundleIdentifierMap.watchOS of plug-in com.apple.dt.IDEWatchSupportCore
etc...
etc...

Android - configure error

// Firebase lib
/* ===============================
@ Imports
=============================== */
const FirebaseAnalytics = require('firebase.analytics')

/* ===============================
@ Consts & Lets
=============================== */
let Initialized

/* ===============================
@ Functions
=============================== */
Alloy.Firebase = {
	Config: callback => {
		const core = require('firebase.core') // eslint-disable-line
		const configured = core.configure()
		Alloy.Log(`[Firebase - config]: ${JSON.stringify(configured)}`)
		Initialized = true
		callback && callback()
	},
	CloudMessaging: require('firebase.cloudmessaging'), // eslint-disable-line
	Analytics: (event, params) => {
		if (!Alloy.CFG.FIREBASE || !Initialized) return

		// params = params || (OS_IOS ? { action: 'click', category: 'click' } : null)

		Alloy.Log(
			`[Firebase - Analytics]: ${JSON.stringify({
				event,
			})}`,
		)

		FirebaseAnalytics.log(event, {})
	},
}
[ERROR] TiExceptionHandler: (main) [336,336] /core/firebase.js:9
[ERROR] TiExceptionHandler: 		const configured = core.configure();
[ERROR] TiExceptionHandler:                           ^
[ERROR] TiExceptionHandler: Error: ApiKey must be set.
[ERROR] TiExceptionHandler:     at Object.Config (/core/firebase.js:9:27)
[ERROR] TiExceptionHandler:     at Window.openWin (/alloy/controllers/index.js:61:18)
[ERROR] TiExceptionHandler:     at Window.value (ti:/events.js:49:21)
[ERROR] TiExceptionHandler:     at Window.value (ti:/events.js:106:20)
[ERROR] TiExceptionHandler:
[ERROR] TiExceptionHandler:     com.google.android.gms.common.internal.Preconditions.checkNotEmpty(Unknown Source:8)
[ERROR] TiExceptionHandler:     com.google.firebase.FirebaseOptions$Builder.setApiKey(com.google.firebase:firebase-common@@16.1.0:86)
[ERROR] TiExceptionHandler:     firebase.core.TitaniumFirebaseCoreModule.configure(TitaniumFirebaseCoreModule.java:129)
[ERROR] TiExceptionHandler:     org.appcelerator.kroll.runtime.v8.V8Object.nativeFireEvent(Native Method)
[ERROR] TiExceptionHandler:     org.appcelerator.kroll.runtime.v8.V8Object.fireEvent(V8Object.java:63)
[ERROR] TiExceptionHandler:     org.appcelerator.kroll.KrollProxy.doFireEvent(KrollProxy.java:979)
[ERROR] TiExceptionHandler:     org.appcelerator.kroll.KrollProxy.handleMessage(KrollProxy.java:1208)
[ERROR] TiExceptionHandler:     org.appcelerator.titanium.proxy.TiViewProxy.handleMessage(TiViewProxy.java:401)
[ERROR] TiExceptionHandler:     org.appcelerator.titanium.proxy.TiWindowProxy.handleMessage(TiWindowProxy.java:127)
[ERROR] TiExceptionHandler:     ti.modules.titanium.ui.WindowProxy.handleMessage(WindowProxy.java:492)
[ERROR] V8Exception: Exception occurred at /core/firebase.js:9: Uncaught Error: ApiKey must be set.

I already place my google-services.json inside app/assets/android/
I'm using:
ti.playservices 16.1.2
firebase.core 4.0.0
TiSDK 7.5.1

Error including GoogleService-Info.plist

I have the next error when i call the method FirebaseApp.configure() : "GoogleService-Info.plist could not find a valid GoogleService-Info.plist in your project"

I found similars issues: chrisribe/ti-firebase#20
and apply it but i can't resolve the problem. Any idea?

$ appc ti build -p ios --build-only
Appcelerator Command-Line Interface, version 6.2.4
Copyright (c) 2014-2017, Appcelerator, Inc. All Rights Reserved.

Operating System
Name = Mac OS X
Version = 10.12.2
Architecture = 64bit

CPUs = 4

Memory = 8589934592

Node.js
Node.js Version = 4.6.0
npm Version = 2.15.9

Titanium CLI
CLI Version = 5.0.14

Titanium SDK
SDK Version = 6.2.2.GA
SDK Path = /Users/intermediaMac/Library/Application Support/Titanium/mobilesdk/osx/6.2.2.GA
Target Platform = iphone

[DEBUG] : [object FirebaseCoreModule] loaded
[DEBUG] : [object FirebaseCloudmessagingModule] loaded
[ERROR] : Script Error {
[ERROR] : column = 27;
[ERROR] : line = 312;
[ERROR] : message = "[FIRApp configure]; (FirebaseApp.configure() in Swift) could not find a valid GoogleService-Info.plist in your project. Please download one from https://console.firebase.google.com/.";
[ERROR] : sourceURL = "file:///Users/intermediaMac/Library/Developer/CoreSimulator/Devices/A5CEFBE1-54AB-4940-91EA-6AF467812CC4/data/Containers/Bundle/Application/05F8F50B-1D83-4AA0-B16D-784D4E29FEEB/QueryApp.app/alloy/controllers/home.js";
[ERROR] : }

Problem with GoogleService-Info.plist

Hi,

I have a problem with GoogleService-Info.plist file.
The errore returned:

[ERROR] : Error: [FIRApp configure]; (FirebaseApp.configure() in Swift) could not find a valid GoogleService-Info.plist in your project. Please download one from https://console.firebase.google.com/.
[ERROR] : File: app.js
[ERROR] : Line: 329
[ERROR] : SourceId:
[ERROR] : Backtrace:
[ERROR] : undefined

where i can insert the "GoogleService-Info.plist" file?
(iOS 11.1, Titatium sdk 6.0.4/6.1.X/6.2.X/6.3.0 GA)

thanks in advance.

x64 issue (iOS)

[ERROR] Script Error Couldn't find module: firebase.core for architecture: x86_64
Module version: 1.2.0 (iOS)
Target: iPhone simulator (iOS 11.3).
Built using Ti [email protected], [email protected].

It builds fine on an iPad device, but it needs to work on the simulator too. I am not sure if this is a module bug or that there is another cause.

Failed resolution of: Lcom/google/firebase/analytics/connector/AnalyticsConnector

Environment:
FB Core 5.0 (using firebase-common-16.1.0 && firebase-core-16.0.8)
8.0.0.GA Appc SDK
Titanium 7.0.10
ti.playservices 16.1.3
google-services.json is in app/assets/android

Hi,

Created a new blank project, and when adding core for Android Im getting the Failed resolution for AnalyticsConnector error as seen below.

Any thoughts on what I might be missing?

Thanks!

-- Start application log -----------------------------------------------------
[INFO] : Project built successfully in 1m 25s 219ms
Address in use, retrying...
Address in use, retrying...
[ERROR] : Zygote: isWhitelistProcess - Process is Whitelisted
[INFO] : SELinux: SELinux: seapp_context_lookup: seinfo=default, level=s0:c35,c257,c512,c768, pkgname=com.firebasetest
[ERROR] : Zygote: accessInfo : 1
[ERROR] : E/om.firebasetes: Not starting debugger since process cannot load the jdwp agent.
[INFO] : I/om.firebasetes: The ClassLoaderContext is a special shared library.
[WARN] : W/om.firebasetes: resources.arsc in APK '/data/app/com.firebasetest-IpVuoimvqlF-BNCzFGozog==/base.apk' is compressed.
[INFO] : TiApplication: (main) [0,0] checkpoint, app created.
[INFO] : MultiDex: VM with version 2.1.0 has multidex support
[INFO] : MultiDex: Installing application
[INFO] : MultiDex: VM has multidex support, MultiDex support library is disabled.
[INFO] : FirebaseInitProvider: FirebaseApp initialization unsuccessful
[INFO] : TiApplication: (main) [813,813] Titanium Javascript runtime: v8
[INFO] : TiRootActivity: (main) [0,0] checkpoint, on root activity create, savedInstanceState: null
[INFO] : firebasetest 1.0 (Powered by Titanium 8.0.0.3726240fa2)
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
Address in use, retrying...
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
Address in use, retrying...
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
Address in use, retrying...
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[WARN] : 2DMatrix: (main) [1570,1570] Ti.UI.2DMatrix DEPRECATED in 8.0.0, in favor of Ti.UI.Matrix2D
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
Address in use, retrying...
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : [LiveView] Error Evaluating app.js @ Line: undefined

[ERROR] : Error: Failed resolution of: Lcom/google/firebase/analytics/connector/AnalyticsConnector;
[ERROR] : File: app.js
[ERROR] : Line: undefined
[ERROR] : SourceId: undefined
[ERROR] : Backtrace:
[ERROR] : undefined

[INFO] : TiRootActivity: (main) [0,0] checkpoint, on root activity resume. activity = com.firebasetest.FirebasetestActivity@ef0cc26
[INFO] : chatty: uid=10291(com.firebasetest) identical 9 lines
[INFO] : Adreno: QUALCOMM build : d693045, Ia714560336
[INFO] : Adreno: Build Date : 12/04/18
[INFO] : Adreno: OpenGL ES Shader Compiler Version: EV031.25.03.01
[INFO] : Adreno: Local Branch :
[INFO] : Adreno: Remote Branch : refs/tags/AU_LINUX_ANDROID_LA.UM.7.3.R1.09.00.00.423.055
[INFO] : Adreno: Remote Branch : NONE
[INFO] : Adreno: Reconstruct Branch : NOTHING
[INFO] : Adreno: Build Config : S P 6.0.7 AArch64
[INFO] : Adreno: PFP: 0x016ee180, ME: 0x00000000
[INFO] : InputMethodManager: startInputInner - mService.startInputOrWindowGainedFocus
[INFO] : ConfigStore: android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasWideColorDisplay retrieved: 0
[INFO] : ConfigStore: android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasHDRDisplay retrieved: 0
[INFO] : OpenGLRenderer: Initialized EGL, version 1.4
[INFO] : APSAnalyticsRunnable: Analytics Started
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
[INFO] : APSAnalyticsRunnable: Analytics service flush complete
[INFO] : APSAnalyticsRunnable: Stopping Service

Upgraded to 6.0.0 and getting this error

[ERROR] TiExceptionHandler: (main) [2,1375] /PushNotifications.js:51 [ERROR] TiExceptionHandler: fcm.registerForPushNotifications(); [ERROR] TiExceptionHandler: ^ [ERROR] TiExceptionHandler: Error: Default FirebaseApp is not initialized in this process . Make sure to call FirebaseApp.initializeApp(Context) first. [ERROR] TiExceptionHandler: at registerForFireBaseAndroid (/PushNotifications.js:51:5) [ERROR] TiExceptionHandler: at /PushNotifications.js:18:1 [ERROR] TiExceptionHandler: at Module._runScript (ti:/module.js:587:9) [ERROR] TiExceptionHandler: at Module.load (ti:/module.js:106:7) [ERROR] TiExceptionHandler: at Module.loadJavascriptText (ti:/module.js:436:9) [ERROR] TiExceptionHandler: at Module.loadAsFile (ti:/module.js:488:15) [ERROR] TiExceptionHandler: at Module.loadAsFileOrDirectory (ti:/module.js:410:20) [ERROR] TiExceptionHandler: at Module.require (ti:/module.js:290:17) [ERROR] TiExceptionHandler: at Module.global.Module.require (<embedded>:4754:34) [ERROR] TiExceptionHandler: at require (ti:/module.js:550:15) [ERROR] TiExceptionHandler: [ERROR] TiExceptionHandler: com.google.firebase.FirebaseApp.getInstance(com.google.firebase:firebase-common@@19.3.0:184) [ERROR] TiExceptionHandler: com.google.firebase.iid.FirebaseInstanceId.getInstance(com.google.firebase:firebase-iid@@20.2.1:1) [ERROR] TiExceptionHandler: firebase.cloudmessaging.CloudMessagingModule.registerForPushNotifications(CloudMessagingModule.java:108) [ERROR] TiExceptionHandler: org.appcelerator.kroll.runtime.v8.V8Object.nativeCallProperty(Native Method) [ERROR] TiExceptionHandler: org.appcelerator.kroll.runtime.v8.V8Object.callProperty(V8Object.java:75) [ERROR] TiExceptionHandler: org.appcelerator.kroll.KrollProxy.handleMessage(KrollProxy.java:1224) [ERROR] TiExceptionHandler: android.os.Handler.dispatchMessage(Handler.java:102) [ERROR] TiExceptionHandler: android.os.Looper.loop(Looper.java:223) [ERROR] TiExceptionHandler: android.app.ActivityThread.main(ActivityThread.java:7656) [ERROR] TiExceptionHandler: java.lang.reflect.Method.invoke(Native Method) [ERROR] V8Exception: Exception occurred at /PushNotifications.js:51: Uncaught Error: Default FirebaseApp is not initialized in this process . Make sure to call FirebaseApp.initializeApp(Context) first.

not building together with GoogleSigning Module(iOS)

Hi,
I have added this two module in My Appcelerator project. But My appcelerator not build with this module.

If I added both module individually then it building properly . but added two module in single project cause me a issue.

[ERROR] : ** BUILD FAILED **

[ERROR] : The following build commands failed:

[ERROR] : Ld /Users/admin/Documents/Appcelerator_Studio_Workspace/testt/build/iphone/build/Products/Debug-iphonesimulator/testt.app/testt normal x86_64

[ERROR] : (1 failure)

Link for both module are

AndroidManifest errors

[ERROR] Failed to package application:
[ERROR]   
[ERROR] /Users/odin/Documents/Projects/Reset/Fleeter/Mobile/Main/build/android/AndroidManifest.xml:45: error: Error: No resource found that matches the given name (at 'label' with value '@string/preferences_name').
[ERROR]   
[ERROR] /Users/odin/Documents/Projects/Reset/Fleeter/Mobile/Main/build/android/AndroidManifest.xml:46: error: Error: No resource found that matches the given name (at 'label' with value '@string/share_name').
[ERROR]   
[ERROR] /Users/odin/Documents/Projects/Reset/Fleeter/Mobile/Main/build/android/AndroidManifest.xml:62: error: Error: No resource found that matches the given name (at 'label' with value '@string/sbc_name').
[ERROR]   
[ERROR] /Users/odin/Documents/Projects/Reset/Fleeter/Mobile/Main/build/android/AndroidManifest.xml:68: error: Error: No resource found that matches the given name (at 'label' with value '@string/share_name').
[ERROR]   
[ERROR] /Users/odin/Documents/Projects/Reset/Fleeter/Mobile/Main/build/android/AndroidManifest.xml:74: error: Error: No resource found that matches the given name (at 'label' with value '@string/history_title').
[ERROR]   
[ERROR] /Users/odin/Documents/Projects/Reset/Fleeter/Mobile/Main/build/android/AndroidManifest.xml:80: error: Error: No resource found that matches the given name (at 'label' with value '@string/bookmark_picker_name').
[ERROR]   
[ERROR] /Users/odin/Documents/Projects/Reset/Fleeter/Mobile/Main/build/android/AndroidManifest.xml:86: error: Error: No resource found that matches the given name (at 'label' with value '@string/app_picker_name').

Looking into those lines:
45, 46

<activity android:name="com.google.zxing.client.android.PreferencesActivity" android:label="@string/preferences_name" android:stateNotNeeded="true" android:configChanges="screenSize|density"/>
		<activity android:name="com.google.zxing.client.android.encode.EncodeActivity" android:label="@string/share_name" android:stateNotNeeded="true" android:configChanges="screenSize|density">

62:

<activity android:name="com.google.zxing.client.android.book.SearchBookContentsActivity" android:label="@string/sbc_name" android:stateNotNeeded="true" android:screenOrientation="landscape" android:configChanges="orientation|keyboardHidden|screenSize|density">

68:

<activity android:name="com.google.zxing.client.android.share.ShareActivity" android:label="@string/share_name" android:stateNotNeeded="true" android:screenOrientation="user" android:theme="@android:style/Theme.Light" android:configChanges="screenSize|density">

74:

<activity android:name="com.google.zxing.client.android.history.HistoryActivity" android:label="@string/history_title" android:stateNotNeeded="true" android:configChanges="screenSize|density">

80:

<activity android:name="com.google.zxing.client.android.share.BookmarkPickerActivity" android:label="@string/bookmark_picker_name" android:stateNotNeeded="true" android:configChanges="screenSize|density">

86:

<activity android:name="com.google.zxing.client.android.share.AppPickerActivity" android:label="@string/app_picker_name" android:stateNotNeeded="true" android:configChanges="orientation|screenSize|density">

iOS crash on liveview reload

Liveview makes it very convenient for testing UI changes, however since integrating Firebase into my app successfully I've been unable to use it effectively on iOS because after any reload the app crashes with the error:

[ERROR] Error: Default app has already been configured.
[ERROR] File: app.js
[ERROR] Line: 75
[ERROR] SourceId: <null>
[ERROR] Backtrace:
[ERROR]  undefined

I have Looked around for support on the issue and other modules including the Firebase SDK reference a FIRApp.defaultApp property to check if configuration already occurred. This property can be found inside titanium-firebase-core/ios/platform/FirebaseCore.framework/Headers/FIRApp.h

/**
 * Returns the default app, or nil if the default app does not exist.
 */
+ (nullable FIRApp *)defaultApp NS_SWIFT_NAME(app());

When trying to access the FirebaseCore object I just get a null object.

var FirebaseCore = require("firebase.core");
Ti.API.debug(FirebaseCore.getOwnPropertyNames()); //[DEBUG] <null>

I believe having the defaultApp property exposed and checking if it is set before calling the Core's configure method would alleviate this liveview issue.

GoogleService-Info.plist - Options is nil

Hi!

I've tried adding the GoogleService-Info.plist file to app/assets/iphone but it can't find the file or its invalid(Freshly downloaded from firebase). So i tried passing the file in the configure function as a param, but that just gets me the error "Options is nil".
I tried it like this: firebaseCore.configure({"file": "GoogleService-Info.plist"});

What am i doing wrong?

Latest xcode and 7.0.2.GA btw.

iOS: Error when tried to compile

I'm getting this error when I try to build my app with Ti.GoogleMaps:

[TRACE] ld: warning: directory not found for option '-F/Users/odin/Documents/Projects/Reset/Fleeter/Mobile/Main/build/iphone/../../modules/iphone/ti.googlemaps/1.2.0/platform'
[TRACE] ld: warning: directory not found for option '-F/Users/odin/Library/Application Support/Titanium/modules/iphone/ti.googlemaps/1.2.0/platform'
[TRACE] ld: framework not found FirebaseCore
[TRACE] clang: error: linker command failed with exit code 1 (use -v to see invocation)
[ERROR] ** BUILD FAILED **
[ERROR] The following build commands failed:
[ERROR]         Ld build/Products/Debug-iphonesimulator/Fleeter.app/Fleeter normal x86_64
[ERROR] (1 failure)

when I remove the firebase-core+firebase-analytics it works just fine and then founds the right version for the ti.googlemaps which is 3.10.0.
captura de tela 2017-11-25 as 19 17 34
captura de tela 2017-11-25 as 19 19 04

I'm using TiSDK 6.3.0.GA

Android v3.0.0 looking for google-services.json in wrong location

I upgraded the Android package from 2.3.0 to 3.0.0 and am getting this error:

[ERROR] TitaniumFirebaseCoreModule: (main) [21,192] Error opening file: /data/user/0/digital.blackbird.myapp/app_appdata/firebase.core/google-services.json (No such file or directory)

For context, I have the google-services.json file in /app/assets/android/ and am passing no options to FirebaseCore.config().

Looks like it's looking in a firebase.core subfolder for some reason?

Can't use FirebaseApp in FirebaseAuth

My goal is to fill the missing methods on Android site ;-)

First I try to test the existent state. This is my test code:

const FirebaseCore = require('firebase.core'), FirebaseAuth=require('firebase.auth');
var $ = Ti.UI.createWindow();
$.addEventListener('open',function() {
	FirebaseCore.configure();
	FirebaseAuth.createUserWithEmail({
		email:"rainer@com",
		password:"********",
		callback : function(e) {
			FirebaseAuth.signInWithEmail({
				email:"rainer@com",
				password:"********",
				callback : function(e) {
					console.log(e);
				}
			});
		}
	});
});

On logcat I can see, the FirebaseApp will created. But the call of methods of FirebaseAuth gives me the following error on logcat:

[ERROR] :  TiExceptionHandler: (main) [0,65] - Message: Uncaught Attempt to invoke virtual method 'com.google.android.gms.tasks.Task com.google.firebase.auth.FirebaseAuth.createUserWithEmailAndPassword(java.lang.String, java.lang.String)' on a null object reference

The same issue with all other methods inside Auth. Maybe a stupid thought: FirebaseApp is generated in first core module, how it is visible in second? Perhaps firebase-core returns a FirebaseAppProxy for usage in other modules – or "I'm on the Holzweg"?

Here the full adb logcat:
https://gist.github.com/AppWerft/bb761fcbdb7c6af658c7fecac2a944c1

Android: Failed resolution of: Lcom/google/android/gms/common/internal/zzby

// Require the Firebase Core module
var FirebaseCore = require('firebase.core');

// Configure your Firebase API's (only required once for all)
FirebaseCore.configure();
$.index.open();

with only the firebase.core module produces this error when the app starts:

[INFO]  art: Rejecting re-init on previously-failed class java.lang.Class<com.google.firebase.zza>
[INFO]  art: Rejecting re-init on previously-failed class java.lang.Class<com.google.firebase.zza>
[WARN]  W/System.err: java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/common/internal/zzby;
[WARN]  W/System.err: 	at com.google.firebase.FirebaseOptions.fromResource(Unknown Source)
[WARN]  W/System.err: 	at com.google.firebase.FirebaseApp.initializeApp(Unknown Source)
[WARN]  W/System.err: 	at firebase.core.TitaniumFirebaseCoreModule.configure(TitaniumFirebaseCoreModule.java:43)
[WARN]  W/System.err: 	at org.appcelerator.kroll.runtime.v8.V8Runtime.nativeRunModule(Native Method)
[WARN]  W/System.err: 	at org.appcelerator.kroll.runtime.v8.V8Runtime.doRunModule(V8Runtime.java:196)
[WARN]  W/System.err: 	at org.appcelerator.kroll.KrollRuntime.runModule(KrollRuntime.java:243)
[WARN]  W/System.err: 	at org.appcelerator.titanium.TiLaunchActivity.loadActivityScript(TiLaunchActivity.java:128)
[WARN]  W/System.err: 	at org.appcelerator.titanium.TiLaunchActivity.windowCreated(TiLaunchActivity.java:183)
[WARN]  W/System.err: 	at org.appcelerator.titanium.TiRootActivity.windowCreated(TiRootActivity.java:172)
[WARN]  W/System.err: 	at org.appcelerator.titanium.TiBaseActivity.onCreate(TiBaseActivity.java:684)
[WARN]  W/System.err: 	at org.appcelerator.titanium.TiLaunchActivity.onCreate(TiLaunchActivity.java:169)
[WARN]  W/System.err: 	at org.appcelerator.titanium.TiRootActivity.onCreate(TiRootActivity.java:161)
[WARN]  W/System.err: 	at android.app.Activity.performCreate(Activity.java:5990)
[WARN]  W/System.err: 	at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1106)
[WARN]  W/System.err: 	at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2278)
[WARN]  W/System.err: 	at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387)
[WARN]  W/System.err: 	at android.app.ActivityThread.access$800(ActivityThread.java:151)
[WARN]  W/System.err: 	at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1303)
[WARN]  W/System.err: 	at android.os.Handler.dispatchMessage(Handler.java:102)
[WARN]  W/System.err: 	at android.os.Looper.loop(Looper.java:135)
[WARN]  W/System.err: 	at android.app.ActivityThread.main(ActivityThread.java:5254)
[WARN]  W/System.err: 	at java.lang.reflect.Method.invoke(Native Method)
[WARN]  W/System.err: 	at java.lang.reflect.Method.invoke(Method.java:372)
[WARN]  W/System.err: 	at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
[WARN]  W/System.err: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
[WARN]  W/System.err: Caused by: java.lang.ClassNotFoundException: Didn't find class "com.google.android.gms.common.internal.zzby" on path: DexPathList[[zip file "/data/app/de.oevermann.analytics-1/base.apk"],nativeLibraryDirectories=[/data/app/de.oevermann.analytics-1/lib/arm, /vendor/lib, /system/lib]]
[WARN]  W/System.err: 	at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
[WARN]  W/System.err: 	at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
[WARN]  W/System.err: 	at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
[WARN]  W/System.err: 	... 25 more
[WARN]  W/System.err: 	Suppressed: java.lang.ClassNotFoundException: com.google.android.gms.common.internal.zzby
[WARN]  W/System.err: 		at java.lang.Class.classForName(Native Method)
[WARN]  W/System.err: 		at java.lang.BootClassLoader.findClass(ClassLoader.java:781)
[WARN]  W/System.err: 		at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)
[WARN]  W/System.err: 		at java.lang.ClassLoader.loadClass(ClassLoader.java:504)
[WARN]  W/System.err: 		... 26 more
[WARN]  W/System.err: 	Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack available
[ERROR] TiExceptionHandler: (main) [312,312] ----- Titanium Javascript Runtime Error -----
[ERROR] TiExceptionHandler: (main) [0,312] - In /alloy/controllers/index.js:37,15
[ERROR] TiExceptionHandler: (main) [0,312] - Message: Uncaught Failed resolution of: Lcom/google/android/gms/common/internal/zzby;
[ERROR] TiExceptionHandler: (main) [0,312] - Source: 	FirebaseCore.configure();
[ERROR] V8Exception: Exception occurred at /alloy/controllers/index.js:37: Uncaught Failed resolution of: Lcom/google/android/gms/common/internal/zzby;
[ERROR] V8Exception: Failed resolution of: Lcom/google/android/gms/common/internal/zzby;

firebase.core ios 1.3.0 build error

Hi,
When I'm using appcelerator SDK 7.x build ios app, It's error occured.
The android app is working on 7.4.x

WARN] : The iOS framework "firebase.core" could not be found. Are you trying to use "FirebaseNanoPB" or "FirebaseInstanceID" or "FirebaseCoreDiagnostics" or "FirebaseCore" or "FirebaseMessaging" instead? (../build/iphone/build/Products/Debug-iphonesimulator/myapp.
app/alloy/controllers/index.js)
[WARN] : The iOS framework "firebase.cloudmessaging" could not be found. Are you trying to use "FirebaseNanoPB" or "FirebaseInstanceID" or "FirebaseCoreDiagnostics" or "FirebaseCore" or "FirebaseMessaging" instead? (../build/iphone/build/Products/Debug-iphonesimulator/myapp.app/alloy/controllers/index.js)

[ERROR] : ** BUILD FAILED **
[ERROR] : The following build commands failed:
[ERROR] : ProcessPCH /Volumes/DATA2/Appcelerator_Studio_Workspace/tainanshopping2018/build/iphone/build/Intermediates/PrecompiledHeaders/SharedPrecompiledHeaders/7491688597739658568/myapp_Prefix.pch.gch /Volumes/DATA2/Appcelerator_Studio_Workspace/tainanshopping2018/build/iphone/myapp_Prefix.pch normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
[ERROR] : (1 failure)

Operating System
Name = Mac OS X
Version = 10.13.6
Architecture = 64bit

CPUs = 4

Memory = 8589934592
Node.js
Node.js Version = 8.9.1
npm Version = 5.5.1
Titanium CLI
CLI Version = 5.1.1
Titanium SDK
SDK Version = 7.4.1.GA
Support/Titanium/mobilesdk/osx/7.4.1.GA
Target Platform = iphone

iOS: Build failed with ti.googlesignin module

I'm getting an error when I try to build my project with both firebase.core and ti.googlesignin added to the project.

[TRACE] ld: 198 duplicate symbols for architecture x86_64
[TRACE] clang: error: linker command failed with exit code 1 (use -v to see invocation)
[ERROR] ** BUILD FAILED **
[ERROR] The following build commands failed:
[ERROR]         Ld build/Products/Debug-iphonesimulator/Kisokos.app/Kisokos normal x86_64 

When I remove one of those modules (it does not matter which one) it works.

Build environment
Operating System

  • Name = Mac OS X
  • Version = 10.13.6
  • Architecture = 64bit
  • CPUs = 4
  • Memory = 8589934592

Node.js

  • Node.js Version = 8.9.1
  • npm Version = 5.5.1

Titanium CLI

  • CLI Version = 5.1.1

Titanium SDK

  • SDK Version = 7.2.0.GA
  • Target Platform = iphone

In my tiapp.xml I have the following modules:

    <modules>
        <module platform="iphone">firebase.cloudmessaging</module>
        <module platform="android">firebase.cloudmessaging</module>
        <module platform="iphone">firebase.core</module>
        <module platform="android">firebase.core</module>
        <module platform="iphone">ti.googlesignin</module>
        <module platform="android">ti.googlesignin</module>
        <module platform="android">ti.playservices</module>
        <module platform="iphone">ti.map</module>
        <module platform="android">ti.map</module>
        <module platform="android">facebook</module>
        <module platform="iphone">facebook</module>
    </modules>

And these are the last lines of build log:

[TRACE] duplicate symbol _OBJC_CLASS_$_GTMLogStandardFormatter in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_METACLASS_$_GTMLogStandardFormatter in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_CLASS_$_GTMLogBasicFormatter in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_METACLASS_$_GTMLogBasicFormatter in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_CLASS_$_GTMLogNoFilter in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_METACLASS_$_GTMLogNoFilter in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_CLASS_$_GTMLogMininumLevelFilter in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_METACLASS_$_GTMLogMininumLevelFilter in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_CLASS_$_GTMLogMaximumLevelFilter in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_METACLASS_$_GTMLogMaximumLevelFilter in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_CLASS_$_GTMLogLevelFilter in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_METACLASS_$_GTMLogLevelFilter in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_CLASS_$_GTMLogAllowedLevelFilter in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_METACLASS_$_GTMLogAllowedLevelFilter in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_CLASS_$_GTMLogger in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_METACLASS_$_GTMLogger in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMLogLevelFilter.userDefaults_ in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMLogAllowedLevelFilter.allowedLevels_ in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMLogger.formatter_ in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMLogStandardFormatter.dateFormatter_ in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMLogger.filter_ in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMLogger.writer_ in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMLogStandardFormatter.pname_ in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMLogStandardFormatter.pid_ in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMLogLevelFilter.verboseLoggingEnabled_ in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMLogger_c585f4ef5b9358c29fd9f1011c48bccc.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMLogger.o)
[TRACE] duplicate symbol _GTMNSDictionaryURLArgumentsExportToSuppressLibToolWarning in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMNSDictionary+URLArguments_aec9c2446af4c2ac5a7380b418b337ea.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GoogleToolboxForMac.framework/GoogleToolboxForMac(GTMNSDictionary+URLArguments.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._taskPriority in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._servicePriority in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _kGTMSessionFetcherElapsedIntervalWithRetriesKey in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _kGTMSessionFetcherCompletionErrorKey in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _kGTMSessionFetcherNumberOfRetriesDoneKey in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _kGTMSessionFetcherStatusDataKey in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _kGTMSessionFetcherCompletionDataKey in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionCookieStorage._policy in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._serviceHost in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._request in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._allowLocalhostRequest in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._retryCount in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._testBlockAccumulateDataChunkCount in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._comment in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._allowInvalidServerCertificates in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._allowedInsecureSchemes in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._properties in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionCookieStorage._cookies in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _GTMSessionFetcherAssertValidSelector in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._retryFactor in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._downloadFinishedError in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._authorizer in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._retryTimer in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._completionHandler in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _GTMFetcherApplicationIdentifier in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._sessionIdentifier in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._didCreateSessionIdentifier in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._backgroundTaskIdentifier in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_CLASS_$_GTMSessionFetcher in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_METACLASS_$_GTMSessionFetcher in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._bodyStreamProvider in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._callbackGroup in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._sessionUserInfo in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._taskDescription in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._configuration in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._sessionNeedingInvalidation in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _kGTMSessionFetcherRetryDelayStartedNotification in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _kGTMSessionFetcherStartedNotification in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _kGTMSessionFetcherRetryDelayStoppedNotification in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _kGTMSessionFetcherStoppedNotification in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _kGTMSessionFetcherCompletionInvokedNotification in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._session in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._shouldInvalidateSession in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._canShareSession in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._wasCreatedFromBackgroundSession in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._usingBackgroundSession in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._userRequestedBackgroundSession in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _kGTMSessionFetcherStatusDomain in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _kGTMSessionFetcherErrorDomain in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _GTMDataFromInputStream in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._maxRetryInterval in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._lastRetryInterval in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._minRetryInterval in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._credential in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._proxyCredential in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._sessionTask in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._skipBackgroundTask in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._useUploadTask in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._retryBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._testBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._isUsingTestBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._willRedirectBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._sendProgressBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._receivedProgressBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._downloadProgressBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._configurationBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._didReceiveResponseBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._willCacheURLResponseBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._challengeBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._accumulateDataBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._resumeDataBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._bodyLength in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._downloadedLength in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._hasAttemptedAuthRefresh in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._log in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _GTMFetcherStandardUserAgentString in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _GTMFetcherCleanedUserAgentString in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _GTMFetcherSystemVersionString in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._hasStoppedFetching in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._userStoppedFetching in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._callbackQueue in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._delegateQueue in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._initialRequestDate in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._initialBeginFetchDate in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._response in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._cookieStorage in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_CLASS_$_GTMSessionCookieStorage in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_METACLASS_$_GTMSessionCookieStorage in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._service in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._isRetryEnabled in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._isStopNotificationNeeded in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._bodyData in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._userData in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._downloadResumeData in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._downloadedData in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._bodyFileURL in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._destinationFileURL in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcher._sessionIdentifierUUID in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcher_77fa8c792419468cdbb2fc3b72ce99c3.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcher.o)
[TRACE] duplicate symbol _kGTMSessionFetcherServiceSessionKey in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._timeout in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._unusedSessionTimeout in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._runningFetchersByHost in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._delayedFetchersByHost in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._maxRunningFetchersPerHost in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._allowLocalhostRequest in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._userAgent in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._allowInvalidServerCertificates in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._allowedInsecureSchemes in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._properties in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._stoppedFetchersToWaitFor in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._authorizer in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherSessionDelegateDispatcher._discardTimer in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._delegateDispatcher in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_CLASS_$_GTMSessionFetcherSessionDelegateDispatcher in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_METACLASS_$_GTMSessionFetcherSessionDelegateDispatcher in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherSessionDelegateDispatcher._taskToFetcherMap in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._configuration in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _kGTMSessionFetcherServiceSessionBecameInvalidNotification in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherSessionDelegateDispatcher._session in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._maxRetryInterval in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._minRetryInterval in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherSessionDelegateDispatcher._discardInterval in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._credential in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._proxyCredential in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._skipBackgroundTask in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._retryBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._testBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._configurationBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._challengeBlock in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._callbackQueue in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._delegateQueue in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._stoppedAllFetchersDate in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._sessionCreationSemaphore in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._cookieStorage in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherSessionDelegateDispatcher._parentService in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_CLASS_$_GTMSessionFetcherService in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_METACLASS_$_GTMSessionFetcherService in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._cookieStorageMethod in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionFetcherService._retryEnabled in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionFetcherService_6944bd8ea358fac7c00cc0ca06d08749.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionFetcherService.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._uploadGranularity in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._shouldInitiateOffsetQuery in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._lastChunkRequest in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._initialBodySent in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._fetcherInFlight in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._isCancelInFlight in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._currentOffset in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._useBackgroundSessionOnChunkFetchers in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._recentChunkReponseHeaders in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._delegateCompletionHandler in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._cancellationHandler in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._chunkFetcher in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_CLASS_$_GTMSessionUploadFetcher in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_METACLASS_$_GTMSessionUploadFetcher in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._uploadDataProvider in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _kGTMSessionFetcherUploadLocationObtainedNotification in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._initialBodyLength in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._uploadFileLength in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._subdataGenerating in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._isSubdataGenerating in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _kGTMSessionUploadFetcherMaximumDemandBufferSize in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._chunkSize in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _kGTMSessionUploadFetcherStandardChunkSize in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _kGTMSessionUploadFetcherUnknownFileSize in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._delegateCallbackQueue in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._uploadMIMEType in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._uploadFileHandle in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._recentChunkStatusCode in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._isPaused in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._isRestartedUpload in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._uploadData in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._uploadLocationURL in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._uploadFileURL in:
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/ti.googlesignin/1.3.0/platform/GoogleSignInDependencies.framework/GoogleSignInDependencies(GTMSessionUploadFetcher_f8011a605fea9da397aa70783bbcfab0.o)
[TRACE]     /Users/balazs/Desktop/develop/Kisokos/source/Kisokos/modules/iphone/firebase.core/1.2.0/platform/GTMSessionFetcher.framework/GTMSessionFetcher(GTMSessionUploadFetcher.o)
[TRACE] ld: 198 duplicate symbols for architecture x86_64
[TRACE] clang: error: linker command failed with exit code 1 (use -v to see invocation)
[ERROR] ** BUILD FAILED **
[ERROR] The following build commands failed:
[ERROR]         Ld build/Products/Debug-iphonesimulator/Kisokos.app/Kisokos normal x86_64
[ERROR] (1 failure)

Any help would be appreciated!

Cannot launch iOS app with newer version 3.0.0

Hi everyone, I were including firebase cloudmessaging in my app including also the core module.
I've already used the combination for push notifications in another app with success, but this time I'm using SDK 9.2.2 with newer version of the modules.
On Android I've fixed all but on iOS i got this error when launching the app and I really cannot figure it out:

[ERROR] /ti.main.js:14262 [ERROR] require('./app'); // This event is to be fired after "app.js" execution. Reasons: [ERROR] ^ [ERROR] : Couldn't find module: ./app for architecture: arm64 [ERROR] at require ([native code]) [ERROR] at Object.<anonymous> (/ti.main.js:14262:10) [ERROR] at doLoad (/ti.main.js:14240:15) [ERROR] at loadBootstrapScripts (/ti.main.js:14250:11) [ERROR] at loadAsync (/ti.main.js:14255:23) [ERROR] Foundation 0x000000018b652940 _NSDescriptionWithLocaleFunc + 96 [ERROR] CoreFoundation 0x000000018a30cfe4 96F8386D-D88A-3C89-A323-A17975C3317F + 778212 [ERROR] CoreFoundation 0x000000018a30e154 _CFStringCreateWithFormatAndArgumentsReturningMetadata + 160 [ERROR] TitaniumKit 0x0000000102d475b4 TiLogMessage + 60 [ERROR] TitaniumKit 0x0000000102d85244 -[TiExceptionHandler reportScriptError:] + 76 [ERROR] TitaniumKit 0x0000000102d5aac8 -[KrollBridge evalFileOnThread:context:] + 792 [ERROR] TitaniumKit 0x0000000102d9274c -[KrollInvocation invoke:] + 60 [ERROR] TitaniumKit 0x0000000102d93194 -[KrollContext invoke:] + 116 [ERROR] TitaniumKit 0x0000000102d5b998 -[KrollBridge didStartNewContext:] + 2744 [ERROR] TitaniumKit 0x0000000102d93928 -[KrollContext main] + 1096 [ERROR] libdispatch.dylib 0x0000000189fa1298 6C143C51-288F-3CD0-84DD-17B9A0AAEE62 + 393880 [ERROR] libdispatch.dylib 0x0000000189fa2280 6C143C51-288F-3CD0-84DD-17B9A0AAEE62 + 397952 [ERROR] libdispatch.dylib 0x0000000189f845b0 6C143C51-288F-3CD0-84DD-17B9A0AAEE62 + 275888 [ERROR] CoreFoundation 0x000000018a2e95d0 96F8386D-D88A-3C89-A323-A17975C3317F + 632272 [ERROR] CoreFoundation 0x000000018a2e3a78 96F8386D-D88A-3C89-A323-A17975C3317F + 608888 [ERROR] CoreFoundation 0x000000018a2e2b90 CFRunLoopRunSpecific + 572 [ERROR] GraphicsServices 0x00000001a0605598 GSEventRunModal + 160 [ERROR] UIKitCore 0x000000018cbcc638 71B59F62-19DA-3CFF-89E1-DACF333BAB0D + 11716152

Android app crashes on Ti SDK 10.0.0.GA

I upgraded my app to Ti SDK 10 and failed to build with below error.

I had the latest module of firebase-core 6.1.1 ; firebase-cloudmessaging 3.1.1 ; ti.playservices 17.5.0

[ERROR] TiExceptionHandler: (main) [91,91] ti:/kroll.js:1045 [ERROR] TiExceptionHandler: throw new Error(Requested module not found: ${request}); // TODO Set 'code' property to 'MODULE_NOT_FOUND' to match Node? [ERROR] TiExceptionHandler: ^ [ERROR] TiExceptionHandler: Error: Requested module not found: ti.playservices\ti.playservices.bootstrap [ERROR] TiExceptionHandler: at Module.require (ti:/kroll.js:1045:14) [ERROR] TiExceptionHandler: at Module.global.Module.require (<embedded>:5086:32) [ERROR] TiExceptionHandler: at require (ti:/kroll.js:1315:22) [ERROR] TiExceptionHandler: at global.require (<embedded>:5071:10) [ERROR] TiExceptionHandler: at doLoad (<embedded>:11198:27) [ERROR] TiExceptionHandler: at loadBootstrapScripts (<embedded>:11224:5) [ERROR] TiExceptionHandler: at loadAsync (<embedded>:11229:3) [ERROR] TiExceptionHandler: at _startSnapshot (<embedded>:11246:1) [ERROR] TiExceptionHandler: at /ti.main.js:1:8 [ERROR] TiExceptionHandler: at Module._runScript (ti:/kroll.js:1342:24) [ERROR] TiExceptionHandler: [ERROR] TiExceptionHandler: org.appcelerator.kroll.runtime.v8.V8Runtime.nativeRunModule(Native Method) [ERROR] TiExceptionHandler: org.appcelerator.kroll.runtime.v8.V8Runtime.doRunModule(V8Runtime.java:175) [ERROR] TiExceptionHandler: org.appcelerator.titanium.TiApplication.launch(TiApplication.java:868) [ERROR] TiExceptionHandler: org.appcelerator.titanium.TiLaunchActivity.loadScript(TiLaunchActivity.java:96) [ERROR] TiExceptionHandler: org.appcelerator.titanium.TiRootActivity.loadScript(TiRootActivity.java:497) [ERROR] TiExceptionHandler: org.appcelerator.titanium.TiLaunchActivity.onResume(TiLaunchActivity.java:177) [ERROR] TiExceptionHandler: org.appcelerator.titanium.TiRootActivity.onResume(TiRootActivity.java:516) [ERROR] TiExceptionHandler: android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1453) [ERROR] TiExceptionHandler: android.app.Activity.performResume(Activity.java:7962) [ERROR] TiExceptionHandler: android.app.ActivityThread.performResumeActivity(ActivityThread.java:4195) [ERROR] V8Exception: Exception occurred at ti:/kroll.js:1045: Uncaught Error: Requested module not found: ti.playservices\ti.playservices.bootstrap

Android: FirebaseCore.configure() error

On android I'm using:

  • TiSDK 7.1.1.GA
  • firebase.core 2.2.0
  • firebase.analytics 2.1.0
  • ti.playservices 11.8.0
  • hyperloop 3.0.5
  • Alloy project

this is my android manifest:

<android xmlns:android="http://schemas.android.com/apk/res/android">
  <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="it.testApps.aaaa" android:versionCode="1" android:versionName="1.1">
    <application>
      <!-- Firebase required -->
      <service android:name="com.google.android.gms.measurement.AppMeasurementService" android:enabled="true" android:exported="false"/>
      <service android:name="com.google.android.gms.measurement.AppMeasurementJobService" android:permission="android.permission.BIND_JOB_SERVICE" android:enabled="true" android:exported="false"/>
      <service android:name="it.testApps.aaaa.gcm.RegistrationIntentService" android:exported="false"/>
      <receiver android:name="com.google.android.gms.measurement.AppMeasurementReceiver" android:enabled="true">
        <intent-filter>
          <action android:name="com.google.android.gms.measurement.UPLOAD"/>
        </intent-filter>
      </receiver>
      <service android:name="it.testApps.aaaa.gcm.GcmIntentService" android:exported="false">
        <intent-filter>
          <action android:name="com.google.android.c2dm.intent.RECEIVE"/>
        </intent-filter>
      </service>
      <service android:name="it.testApps.aaaa.gcm.GcmIntentService" android:exported="false">
        <intent-filter>
          <action android:name="com.google.android.c2dm.intent.SEND"/>
        </intent-filter>
      </service>
      <service android:name="it.testApps.aaaa.gcm.GcmIDListenerService" android:exported="false">
        <intent-filter>
          <action android:name="com.google.android.gms.iid.InstanceID"/>
        </intent-filter>
      </service>
    </application>
  </manifest>
</androi

and I added <string name="google_app_id">"xxxxxxxxxxx"</string> to the \platform\android\res\values\string.xml file.

In my controller, on the open window event listener, I've this:

var FirebaseCore = require('firebase.core');
FirebaseCore.configure({
  //file: "google-services.json",
  APIKey: "AIzaSyxxxxxxxxx",
  projectID: "api-project-.....",
  storageBucket: "api-project-xxxxxxxxxxx.appspot.com",
  applicationID: "1:xxxxxxxxxxx:android:xxxxxxxxxxx",
});
var FirebaseAnalytics = require('firebase.analytics');
FirebaseAnalytics.log('test_event', {});

I tested also using only FirebaseCore.configure({file: "google-services.json}). The file is on /app/assets/android

But the app crash with this error:

[WARN]  W/System.err: java.lang.NoSuchMethodError: No static method zzh(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/String; in class Lcom/google/android/gms/common/internal/zzbo; or its super classes (declaration of 'com.google.android.gms.common.internal.zzbo' appears in /data/app/it.testApps.aaaa-1/base.apk)
[WARN]  W/System.err: 	at com.google.firebase.FirebaseOptions$Builder.setApiKey(Unknown Source)
[WARN]  W/System.err: 	at firebase.core.TitaniumFirebaseCoreModule.configure(TitaniumFirebaseCoreModule.java:108)
[WARN]  W/System.err: 	at org.appcelerator.kroll.runtime.v8.V8Function.nativeInvoke(Native Method)
[WARN]  W/System.err: 	at org.appcelerator.kroll.runtime.v8.V8Function.callSync(V8Function.java:55)
[WARN]  W/System.err: 	at org.appcelerator.kroll.runtime.v8.V8Function.call(V8Function.java:41)
[WARN]  W/System.err: 	at ti.modules.titanium.TitaniumModule$Timer.run(TitaniumModule.java:166)
[WARN]  W/System.err: 	at android.os.Handler.handleCallback(Handler.java:751)
[WARN]  W/System.err: 	at android.os.Handler.dispatchMessage(Handler.java:95)
[WARN]  W/System.err: 	at android.os.Looper.loop(Looper.java:154)
[WARN]  W/System.err: 	at android.app.ActivityThread.main(ActivityThread.java:6119)
[WARN]  W/System.err: 	at java.lang.reflect.Method.invoke(Native Method)
[WARN]  W/System.err: 	at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
[WARN]  W/System.err: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)
[ERROR] TiExceptionHandler: (main) [285,5281] ----- Titanium Javascript Runtime Error -----
[ERROR] TiExceptionHandler: (main) [0,5281] - In /alloy/controllers/index.js:129,17
[ERROR] TiExceptionHandler: (main) [0,5281] - Message: Uncaught No static method zzh(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/String; in class Lcom/google/android/gms/common/internal/zzbo; or its super classes (declaration of 'com.google.android.gms.common.internal.zzbo' appears in /data/app/it.testApps.aaaa-1/base.apk)
[ERROR] TiExceptionHandler: (main) [0,5281] - Source: 			FirebaseCore.configure({
[ERROR] V8Exception: Exception occurred at /alloy/controllers/index.js:129: Uncaught No static method zzh(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/String; in class Lcom/google/android/gms/common/internal/zzbo; or its super classes (declaration of 'com.google.android.gms.common.internal.zzbo' appears in /data/app/it.testApps.aaaa-1/base.apk)
[ERROR] V8Exception: No static method zzh(Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/String; in class Lcom/google/android/gms/common/internal/zzbo; or its super classes (declaration of 'com.google.android.gms.common.internal.zzbo' appears in /data/app/it.testApps.aaaa-1/base.apk)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.