Git Product home page Git Product logo

react-native-ml-kit's Introduction

react-native-ml-kit's People

Contributors

a7medev avatar catalinmiron avatar frw avatar s0rta avatar spetrey avatar vonovak 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  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  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  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

react-native-ml-kit's Issues

Compile error after installing face-detection with expo

What happened?

I'm attempting to use face detection in my app, however installing this library seems to cause issues. I've gotten it to work on android but ios leads to a compiler error. I've isolated this issue by trying to install it in a fresh new project:

$ npx create-expo-app TestApp
$ cd TestApp
$ npx expo install @react-native-ml-kit/face-detection
$ npx expo prebuild
$ npx expo run:ios

After compiling files for a while it leads to this:

❌  (ios/Pods/Target Support Files/Pods-TestApp/ExpoModulesProvider.swift:8:8)

   6 |  */
   7 | 
>  8 | import ExpoModulesCore
     |        ^ could not find module 'ExpoModulesCore' for target 'x86_64-apple-ios-simulator'; found: arm64-apple-ios-simulator, at: /Users/scottsullivan/Library/Developer/Xcode/DerivedData/TestApp-ftxbezwvqfynnbeowrmsfgupxemc/Build/Products/Debug-iphonesimulator/ExpoModulesCore/ExpoModulesCore.swiftmodule
   9 | import EXConstants
  10 | import ExpoFileSystem
  11 | import ExpoKeepAwake


› 1 error(s), and 0 warning(s)

CommandError: Failed to build iOS project. "xcodebuild" exited with error code 65.

This was with npm 10.2.4, expo 50.0.7, react native 0.73.4, and react-native-ml-kit/face-detection 1.3.1, using xcode 15.2.

Version

@react-native-ml-kit/barcode-scanning: version@react-native-ml-kit/face-detection: version@react-native-ml-kit/identify-languages: version@react-native-ml-kit/image-labeling: version@react-native-ml-kit/text-recognition: version@react-native-ml-kit/translate-text: version

Which ML Kit packages do you use?

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

info Fetching system and libraries information...
System:
OS: macOS 14.3.1
CPU: (8) arm64 Apple M2
Memory: 248.75 MB / 16.00 GB
Shell:
version: 3.2.57
path: /bin/bash
Binaries:
Node:
version: 20.11.1
path: /usr/local/bin/node
Yarn:
version: 1.22.21
path: /usr/local/bin/yarn
npm:
version: 10.2.4
path: /usr/local/bin/npm
Watchman: Not Found
Managers:
CocoaPods:
version: 1.15.2
path: /opt/homebrew/bin/pod
SDKs:
iOS SDK:
Platforms:
- DriverKit 23.2
- iOS 17.2
- macOS 14.2
- tvOS 17.2
- visionOS 1.0
- watchOS 10.2
Android SDK: Not Found
IDEs:
Android Studio: Not Found
Xcode:
version: 15.2/15C500b
path: /usr/bin/xcodebuild
Languages:
Java: Not Found
Ruby:
version: 2.6.10
path: /usr/bin/ruby
npmPackages:
"@react-native-community/cli": Not Found
react:
installed: 18.2.0
wanted: 18.2.0
react-native:
installed: 0.73.4
wanted: 0.73.4
react-native-macos: Not Found
npmGlobalPackages:
"react-native": Not Found
Android:
hermesEnabled: true
newArchEnabled: false
iOS:
hermesEnabled: true
newArchEnabled: false

Steps to Reproduce

$ npx create-expo-app TestApp
$ cd TestApp
$ npx expo install @react-native-ml-kit/face-detection
$ npx expo prebuild
$ npx expo run:ios

iOS cocoapods versions

I'm trying to run pod install, and I'm getting the following error. Any help?

[!] CocoaPods could not find compatible versions for pod "GoogleMLKit/MLKitCore":
  In Podfile:
    RNMLKitFaceDetection (from `../node_modules/@react-native-ml-kit/face-detection`) was resolved to 1.1.1, which depends on
      GoogleMLKit/FaceDetection (= 2.6.0) was resolved to 2.6.0, which depends on
        GoogleMLKit/MLKitCore (= 2.6.0)

    RNMLKitTextRecognition (from `../node_modules/@react-native-ml-kit/text-recognition`) was resolved to 1.1.1, which depends on
      GoogleMLKit/TextRecognition (= 2.2.0) was resolved to 2.2.0, which depends on
        GoogleMLKit/MLKitCore (= 2.2.0)

Missing Platform import on most modules

What happened?

while testing barcode scanning i've noticed that when the NativeModule is not present we get this error:

ReferenceError: Platform is not defined

Checking the code i've noticed that on index.js we have the following code:

import { NativeModules } from 'react-native';

const LINKING_ERROR =
  `The package '@react-native-ml-kit/barcode-scanning' doesn't seem to be linked. Make sure: \n\n` +
  Platform.select({ ios: "- You have run 'pod install'\n", default: '' }) +
  '- You rebuilt the app after installing the package\n' +
  '- You are not using Expo managed workflow\n';

...

Here we can see Platform is not being imported.

Version

@react-native-ml-kit/barcode-scanning: version@react-native-ml-kit/face-detection: version@react-native-ml-kit/identify-languages: version@react-native-ml-kit/image-labeling: version@react-native-ml-kit/text-recognition: version@react-native-ml-kit/translate-text: version

Which ML Kit packages do you use?

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

System:
    OS: macOS 13.4.1
    CPU: (8) arm64 Apple M1 Pro
    Memory: 161.33 MB / 16.00 GB
    Shell: 5.9 - /bin/zsh
  Binaries:
    Node: 16.15.1 - ~/.nodenv/versions/16.15.1/bin/node
    Yarn: 1.22.19 - ~/Dev/mobile-app/node_modules/.bin/yarn
    npm: 8.11.0 - ~/.nodenv/versions/16.15.1/bin/npm
    Watchman: 2023.04.10.00 - /opt/homebrew/bin/watchman
  Managers:
    CocoaPods: 1.12.0 - /Users/claudiovalenzuela/.rbenv/shims/pod
  SDKs:
    iOS SDK:
      Platforms: DriverKit 22.2, iOS 16.2, macOS 13.1, tvOS 16.1, watchOS 9.1
    Android SDK: Not Found
  IDEs:
    Android Studio: 2021.1 AI-211.7628.21.2111.8193401
    Xcode: 14.2/14C18 - /usr/bin/xcodebuild
  Languages:
    Java: 11.0.11 - /usr/bin/javac
  npmPackages:
    @react-native-community/cli: Not Found
    react: 17.0.2 => 17.0.2 
    react-native: 0.67.5 => 0.67.5 
    react-native-macos: Not Found
  npmGlobalPackages:
    *react-native*: Not Found

Steps to Reproduce

attempt to import the library on a test enviromnment

remove unsed language

What happened?

How can I remove unused languages or simply select the one I want to use?

Version

@react-native-ml-kit/text-recognition: 1.5.1

Which ML Kit packages do you use?

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

info Fetching system and libraries information...
System:
  OS: Linux 6.5 Ubuntu 23.10 23.10 (Mantic Minotaur)
  CPU: (12) x64 12th Gen Intel(R) Core(TM) i7-1255U
  Memory: 5.45 GB / 15.33 GB
  Shell:
    version: "5.9"
    path: /bin/zsh
Binaries:
  Node:
    version: 18.17.1
    path: /usr/bin/node
  Yarn: Not Found
  npm:
    version: 9.8.1
    path: /usr/bin/npm
  Watchman: Not Found
SDKs:
  Android SDK:
    API Levels:
      - "30"
      - "31"
      - "33"
      - "34"
    Build Tools:
      - 30.0.3
      - 31.0.0
      - 32.0.0
      - 33.0.0
      - 33.0.1
      - 34.0.0
    System Images:
      - android-33 | Intel x86_64 Atom
      - android-33 | Google APIs Intel x86_64 Atom
      - android-34 | Intel x86_64 Atom
      - android-34 | Google APIs Intel x86_64 Atom
      - android-34 | Google Play Intel x86_64 Atom
    Android NDK: 22.1.7171670
IDEs:
  Android Studio: Not Found
Languages:
  Java:
    version: 17.0.10
    path: /usr/bin/javac
  Ruby:
    version: 3.1.2
    path: /usr/bin/ruby
npmPackages:
  "@react-native-community/cli": Not Found
  react:
    installed: 18.2.0
    wanted: 18.2.0
  react-native:
    installed: 0.73.4
    wanted: 0.73.4
npmGlobalPackages:
  "*react-native*": Not Found
Android:
  hermesEnabled: true
  newArchEnabled: false
iOS:
  hermesEnabled: Not found
  newArchEnabled: false

Steps to Reproduce

When you inspect the apk, you see that several OCR models are installed.

[feature-request] Base64 String Scanning instead of Local File

Is there a way to have the input value as a Base64 string instead of a local file? If so, utiliing the frame cropping plugin from vision-camera we can implement a real-time recognition of multiple object, I currently am trying to implement recognition of both barcodes and text-recognition using both your plugins. But I am hindered by the fact that the user needs to click on a button to capture an image, I want to do it real time without pushing any button. Any guidance will be greatly appreciated

TextRecognition iOS error

Hello, I'm getting "Input image must not be nil" on iOS. I'm using RNFS.TemporaryDirectoryPath, also tried RNFS.DocumentDirectoryPath. It's working using Android. Any idea? Should I add some permission or capability?

IMG_3FC1BDAE7873-1

Could not find a delaraction file for module `@react-native-ml-kit/text-recognition`

What happened?

Hi @a7medev, currently I couldn't find declaration files and couldn't import the interface/datatypes. Is there any way for me to import it correctly?

missing-mlkit-declaration-file

Version

@react-native-ml-kit/text-recognition:^1.2.0

Which ML Kit packages do you use?

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

System:
    OS: Linux 5.15 Ubuntu 20.04.5 LTS (Focal Fossa)
    CPU: (8) x64 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz
    Memory: 955.81 MB / 15.33 GB
    Shell: 5.0.17 - /bin/bash
  Binaries:
    Node: 16.13.2 - ~/.nvm/versions/node/v16.13.2/bin/node
    Yarn: 3.2.0 - ~/.nvm/versions/node/v16.13.2/bin/yarn
    npm: 8.19.1 - ~/.nvm/versions/node/v16.13.2/bin/npm
    Watchman: 4.9.0 - /usr/bin/watchman
  SDKs:
    Android SDK:
      API Levels: 25, 26, 27, 28, 29, 30, 31, 32, 33
      Build Tools: 30.0.2, 30.0.3, 31.0.0, 32.0.0, 32.1.0, 33.0.0
      System Images: android-29 | Google APIs Intel x86 Atom_64, android-30 | Google APIs Intel x86 Atom
      Android NDK: Not Found
  IDEs:
    Android Studio: Not Found
  Languages:
    Java: 11.0.16 - /usr/bin/javac
  npmPackages:
    @react-native-community/cli: ^7.0.3 => 7.0.3 
    react: 17.0.2 => 17.0.2 
    react-native: ^0.68.3 => 0.68.3 
  npmGlobalPackages:
    *react-native*: Not Found

Steps to Reproduce

  • Install from yarn, yarn add @react-native-ml-kit/text-recognition
  • Import in .tsx file

App crash after installing the package in android

What happened?

I insalled the package using npm like this
npm install @react-native-ml-kit/image-labeling --save

It is making the app crash. The I tried to link the main branch directly to package,json like this
"@react-native-ml-kit/image-labeling": "https://github.com/a7med-mahmoud/react-native-ml-kit/tree/main/image-labeling#main",

That doesn't event install

Version

1.2.0

Which ML Kit packages do you use?

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

System: OS: Windows 10 10.0.22000 CPU: (8) x64 11th Gen Intel(R) Core(TM) i7-11370H @ 3.30GHz Memory: 3.95 GB / 15.74 GB Binaries: Node: 16.15.0 - C:\Program Files\nodejs\node.EXE Yarn: 1.22.18 - C:\Program Files\nodejs\yarn.CMD npm: 8.5.5 - C:\Program Files\nodejs\npm.CMD Watchman: Not Found SDKs: Android SDK: Not Found Windows SDK: Not Found IDEs: Android Studio: Version 2021.1.0.0 AI-211.7628.21.2111.8193401 Visual Studio: Not Found Languages: Java: 11.0.15.1 - C:\Program Files\Common Files\Oracle\Java\javapath\javac.EXE npmPackages: @react-native-community/cli: Not Found react: 18.0.0 => 18.0.0 react-native: 0.69.4 => 0.69.4 react-native-windows: Not Found npmGlobalPackages: *react-native*: Not Found

Steps to Reproduce

Install the package using npm install @react-native-ml-kit/image-labeling --save
Try run the project using npm run android

Face detection not working when image path is given from react native camera kit

When I use Image taken from React native camera kit package, even when the face is clear and have proper pixel, the face result is incorrect and it happens on ios device only.

Face detection is working properly when image is picked from device.

Here is my code for face detection.

const { uri } = await cameraRef.current.capture()
const result = await FaceDetection.detect(imagePath, { classificationMode: 'all', })

here is example image path generated by react native camera kit
Image size is 1179 × 1179 pixels

file:///private/var/mobile/Containers/Data/Application/8A87BC60-F8AC-4344-A9A2-D1ECB695BDA8/tmp/6DF288F4-D386-42FE-A51E-DF8C3C7DC6C7-7734-0000018B730F71E2.jpg

here is detail of my project

"react-native": "0.72.1"
"@react-native-ml-kit/face-detection": "^1.1.2"
"react-native-camera-kit": "^13.0.0"

Error while reading content from uri

What happened?

Error: No content provider:

Version

@react-native-ml-kit/barcode-scanning: version@react-native-ml-kit/face-detection: version@react-native-ml-kit/identify-languages: version@react-native-ml-kit/image-labeling: version@react-native-ml-kit/text-recognition: version@react-native-ml-kit/translate-text: version

Which ML Kit packages do you use?

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

System:
OS: Windows 10 10.0.19045
CPU: (12) x64 Intel(R) Core(TM) i5-10400F CPU @ 2.90GHz
Memory: 587.97 MB / 15.88 GB
Binaries:
Node: 16.10.0 - C:\Program Files\nodejs\node.EXE
Yarn: 1.22.19 - ~\AppData\Roaming\npm\yarn.CMD
npm: 7.24.0 - C:\Program Files\nodejs\npm.CMD
Watchman: Not Found
SDKs:
Android SDK:
API Levels: 31, 33
Build Tools: 30.0.3, 31.0.0, 33.0.0
System Images: android-31 | Google Play Intel x86 Atom_64, android-33 | Google APIs Intel x86 Atom_64
Android NDK: Not Found
Windows SDK: Not Found
IDEs:
Android Studio: AI-213.7172.25.2113.9123335
Visual Studio: Not Found
Languages:
Java: 11.0.17 - /c/Program Files/Eclipse Adoptium/jdk-11.0.17.8-hotspot/bin/javac
npmPackages:
@react-native-community/cli: Not Found
react: 18.1.0 => 18.1.0
react-native: 0.70.5 => 0.70.5
react-native-windows: Not Found
npmGlobalPackages:
react-native: Not Found

Steps to Reproduce

install react native mlkit and try to recognize text in android emulator

async function recognizeText() {
try {
const result = await TextRecognition.recognize(
"https://developers.google.com/static/ml-kit/vision/text-recognition/images/Wege_der_parlamentarischen_Demokratie.jpg"
);

  console.log("A", JSON.stringify(result, null, 2));

  for (let block of result.blocks) {
    console.log("Block text:", block.text);
    console.log("Block frame:", block.frame);

    for (let line of block.lines) {
      console.log("Line text:", line.text);
      console.log("Line frame:", line.frame);
    }
  }

  // resultFromFile.map(item => {
  //   item.lines
  // });

  setText(result.text);
} catch (err) {
  console.log("Error", err);
}

}

face detection returns []

Hello, I'm facing an issue with my IOS device. When I send an image URL captured through a react-native-vision-camera it returns an empty array. Do you know how I can solve this?

const photo = await camera.current.takePhoto({
enableShutterSound: false,
});

try {
const faceResults = await FaceDetection.detect('file://' + photo.path, {
contourMode: 'all',
});
console.log(faceResults);
} catch (e) {
console.log(e);
}

EX: I didn't use any firebase package.

some barcode decoding problems

What happened?

First : very good, problems free and light to compile package, congrats !

I went far in the barcode decoding and mention some problems :

  • Seems to not take all the codes when mixed on a same picture : ex 128 codes (format 1) and format 16 : the app do not consider the 16 format (Datamatrix)

1D and 2 D codes mixed : depending the 1st the app will find , will not mix : so either he decodes only the 1D or only the 2D

(tools : https://barcode.tec-it.com/en ,
I remains at your disposal for testing improvments !

Version

@react-native-ml-kit/barcode-scanning: V1.2.0
30-codes-feuille.pdf

Which ML Kit packages do you use?

30-codes-feuille.pdf

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

System:
OS: Windows 10 10.0.19043
CPU: (4) x64 Intel(R) Core(TM) i5-3320M CPU @ 2.60GHz
Memory: 1.53 GB / 7.70 GB
Binaries:
Node: 16.14.1 - C:\Program Files\nodejs\node.EXE
Yarn: 1.22.19 - ~\AppData\Roaming\npm\yarn.CMD
npm: 8.13.1 - C:\Program Files\nodejs\npm.CMD
Watchman: Not Found
SDKs:
Android SDK: Not Found
Windows SDK:
AllowDevelopmentWithoutDevLicense: Enabled
AllowAllTrustedApps: Enabled
IDEs:
Android Studio: Not Found
Visual Studio: Not Found
Languages:
Java: Not Found
npmPackages:
@react-native-community/cli: Not Found
react: 18.1.0 => 18.1.0
react-native: 0.70.1 => 0.70.1
react-native-windows: Not Found
npmGlobalPackages:
react-native: Not Found

Steps to Reproduce

just select the images given in th example given.

"dependencies": {
"@react-native-ml-kit/barcode-scanning": "^1.2.0",
"react": "18.1.0",
"react-native": "0.70.1",
"react-native-image-crop-picker": "^0.38.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5"
},
yarn
yarn run-android
(no more need to link)

thanks !

If image is rotated by 180 then unable to read the text

What happened?

If we select the reverse image then text recognition is not correct, we should have facility to rotate the image and read the exact content.

Version

@react-native-ml-kit/barcode-scanning: version@react-native-ml-kit/face-detection: version@react-native-ml-kit/identify-languages: version@react-native-ml-kit/image-labeling: version@react-native-ml-kit/text-recognition: version@react-native-ml-kit/translate-text: version

Which ML Kit packages do you use?

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

System:
OS: macOS 13.3.1
CPU: (8) arm64 Apple M2
Memory: 105.91 MB / 8.00 GB
Shell: 5.9 - /bin/zsh
Binaries:
Node: 20.3.0 - /opt/homebrew/bin/node
Yarn: 1.22.19 - /opt/homebrew/bin/yarn
npm: 9.6.7 - /opt/homebrew/bin/npm
Watchman: Not Found
Managers:
CocoaPods: 1.12.1 - /opt/homebrew/bin/pod
SDKs:
iOS SDK:
Platforms: DriverKit 22.4, iOS 16.4, macOS 13.3, tvOS 16.4, watchOS 9.4
Android SDK: Not Found
IDEs:
Android Studio: 2022.2 AI-222.4459.24.2221.9971841
Xcode: 14.3/14E222b - /usr/bin/xcodebuild
Languages:
Java: 11.0.19 - /opt/homebrew/opt/openjdk@11/bin/javac
npmPackages:
@react-native-community/cli: Not Found
react: 18.2.0 => 18.2.0
react-native: 0.71.11 => 0.71.11
react-native-macos: Not Found
npmGlobalPackages:
react-native: Not Found

Steps to Reproduce

Select reverse image from gallery and send the image url to text recognise function, its giving reverse text.

BUILD FAILED on IOS

using on M1 Mac

Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build logs further, consider building your app with Xcode.app, by opening mustaqbill.xcworkspace.
Command line invocation:
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -workspace mustaqbill.xcworkspace -configuration Debug -scheme mustaqbill -destination id=12D92B4A-96CD-4871-96FD-9C0A5B7FD54C

User defaults from command line:
IDEPackageSupportUseBuiltinSCM = YES

note: Using new build system
note: Planning
Analyze workspace

Create build description
Build description signature: f4aa7eb76e1c41b541f9b546ae266813
Build description path: /Users/talhaatiq/Library/Developer/Xcode/DerivedData/mustaqbill-fhemmipxsgoadjbxflibshapgaaz/Build/Intermediates.noindex/XCBuildData/f4aa7eb76e1c41b541f9b546ae266813-desc.xcbuild

note: Build preparation complete
note: Building targets in dependency order
/Users/talhaatiq/Documents/GitHub/P103-Mstqbl-App/ios/mustaqbill.xcodeproj: error: The linked library 'libPods-mustaqbill.a' is missing one or more architectures required by this target: x86_64. (in target 'mustaqbill' from project 'mustaqbill')

2022-06-29 18:09:26.542 xcodebuild[12083:734655] 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
2022-06-29 18:09:26.542 xcodebuild[12083:734655] 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
** BUILD FAILED **

unable to make build and run on ios 16.1

What happened?

https://github.com/a7medev/react-native-ml-kit)/text-recognition/

integrated this in my current app which was working fine.

after adding text recognition i am unable to run the app and get error in build.
tried using the provided example still same issue.

testing on simulator i phone 14 pro ios 16.1

Version

1.2.1

Which ML Kit packages do you use?

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

Screenshot 2023-02-14 at 1 33 02 PM (2)

System:
OS: macOS 13.0.1
CPU: (8) arm64 Apple M1
Memory: 177.50 MB / 8.00 GB
Shell: 5.8.1 - /bin/zsh
Binaries:
Node: 18.11.0 - /opt/homebrew/bin/node
Yarn: 1.22.19 - ~/.yarn/bin/yarn
npm: 8.19.2 - /opt/homebrew/bin/npm
Watchman: 2022.10.17.00 - /opt/homebrew/bin/watchman
Managers:
CocoaPods: 1.11.3 - /opt/homebrew/bin/pod
SDKs:
iOS SDK:
Platforms: DriverKit 22.1, iOS 16.1, macOS 13.0, tvOS 16.1, watchOS 9.1
Android SDK: Not Found

react: 17.0.2 => 17.0.2 
react-native: 0.66.1 => 0.66.1 

info React Native v0.71.2 is now available (your project is running on v0.66.1)

Steps to Reproduce

yarn add @react-native-ml-kit/text-recognition
install pods.

build the app

Add barcode raw value

What happened?

BarcodeScanning.m

[result addObject:@{
  @"value": barcode.displayValue,
  @"format": format,
  @"rawValue": barcode.rawValue
 }];

BarcodeScanningModule.java

public void onSuccess(List<Barcode> barcodes) {
  WritableArray result = Arguments.createArray();
  for (Barcode barcode : barcodes) {
      WritableMap map = Arguments.createMap();
      map.putString("value", barcode.getDisplayValue());
      map.putDouble("format", barcode.getFormat());
      map.putString("rawValue", barcode.getRawValue());
      result.pushMap(map);
  }
  promise.resolve(result);
}

TS

export interface Barcode {
  format: BarcodeFormat;
  value: string;
  rawValue: string;
}

Could you please add a getRawValue.
Thanks

Version

@react-native-ml-kit/barcode-scanning: version@react-native-ml-kit/face-detection: version@react-native-ml-kit/identify-languages: version@react-native-ml-kit/image-labeling: version@react-native-ml-kit/text-recognition: version@react-native-ml-kit/translate-text: version

Which ML Kit packages do you use?

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

Check prev message

Steps to Reproduce

Check prev message

react-native 0.73.4 debug mod linker command failed with exit code 1 (use -v to see invocation)

What happened?

ld: Undefined symbols:
  _GULLogBasic, referenced from:
      _MLKLog in MLKitCommon[x86_64][7](MLKLogger.o)
  _OBJC_CLASS_$_GDTCORTransport, referenced from:
       in MLKitCommon[x86_64][6](MLKFirelogTransport.o)
  _OBJC_CLASS_$_GTMLogMininumLevelFilter, referenced from:
       in MLKitCommon[x86_64][151](GIPLoggingReroutingGTMLogger.o)
  _OBJC_CLASS_$_GTMLogger, referenced from:
       in MLKitCommon[x86_64][26](CCTClearcutUploader.o)
      _OBJC_CLASS_$_MLKITx_GIPLoggingReroutingGTMLogger in MLKitCommon[x86_64][151](GIPLoggingReroutingGTMLogger.o)
  _OBJC_CLASS_$_GTMSessionCookieStorage, referenced from:
       in MLKitCommon[x86_64][26](CCTClearcutUploader.o)
  _OBJC_CLASS_$_GTMSessionFetcher, referenced from:
       in MLKitCommon[x86_64][26](CCTClearcutUploader.o)
  _OBJC_CLASS_$_GTMSessionFetcherService, referenced from:
       in MLKitCommon[x86_64][18](MLKModelDownloader.o)
  _OBJC_CLASS_$_GULCCComponent, referenced from:
       in MLKitCommon[x86_64][11](MLKCustomModelManager.o)
  _OBJC_CLASS_$_GULCCComponentContainer, referenced from:
       in MLKitCommon[x86_64][3](MLKContext.o)
  _OBJC_CLASS_$_GULCCComponentType, referenced from:
       in MLKitCommon[x86_64][3](MLKContext.o)
  _OBJC_CLASS_$_GULUserDefaults, referenced from:
       in MLKitCommon[x86_64][2](MLKAnalyticsLogger.o)
  _OBJC_CLASS_$_RCTAppDelegate, referenced from:
      _OBJC_CLASS_$_AppDelegate in AppDelegate.o
  _OBJC_CLASS_$_RCTBundleURLProvider, referenced from:
       in AppDelegate.o
  _OBJC_METACLASS_$_GTMLogger, referenced from:
      _OBJC_METACLASS_$_MLKITx_GIPLoggingReroutingGTMLogger in MLKitCommon[x86_64][151](GIPLoggingReroutingGTMLogger.o)
  _OBJC_METACLASS_$_RCTAppDelegate, referenced from:
      _OBJC_METACLASS_$_AppDelegate in AppDelegate.o
  _kGTMSessionFetcherStatusDomain, referenced from:
      ___69-[MLKModelDownloader beginModelDownloadWithURL:modelInfo:conditions:]_block_invoke.285 in MLKitCommon[x86_64][18](MLKModelDownloader.o)
      ___150-[MLKITx_PHTHeterodyneSyncer batchSyncWithAccounts:syncedScopes:fetchReason:throttlingCache:heterodyneSyncInfo:accountToAuthToken:lastError:callback:]_block_invoke in MLKitCommon[x86_64][45](PHTHeterodyneSyncer.o)
      ___91-[MLKITx_PHTInternalHeterodyneSyncer syncHoldingLockWithSyncedScopes:fetchReason:callback:]_block_invoke in MLKitCommon[x86_64][82](PHTInternalHeterodyneSyncer.o)
      ___63-[MLKITx_GMVCloudVisionClient initWithCloudUri:apiKey:options:]_block_invoke in MLKitVision[x86_64][7](GMVCloudVisionClient.o)
clang: error: linker command failed with exit code 1 (use -v to see invocation)

I encountered this error when I installed the @react-native-ml-kit/text-recognition library into the react-native project with version 0.73.4.

This error occurs when product->scheme->edit-scheme->build configration->debug is selected.

However, when I change it to product->scheme->edit-scheme->build configration->release, the error disappears and the build is successful.

How can I solve this current error in Debug mode?

Version

@react-native-ml-kit/barcode-scanning: version@react-native-ml-kit/face-detection: version@react-native-ml-kit/identify-languages: version@react-native-ml-kit/image-labeling: version@react-native-ml-kit/text-recognition: version@react-native-ml-kit/translate-text: version

Which ML Kit packages do you use?

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

System:
OS: macOS 14.3.1
CPU: (12) arm64 Apple M2 Pro
Memory: 119.36 MB / 16.00 GB
Shell:
version: "5.9"
path: /bin/zsh
Binaries:
Node:
version: 21.6.2
path: /opt/homebrew/bin/node
Yarn: Not Found
npm:
version: 10.2.4
path: /opt/homebrew/bin/npm
Watchman:
version: 2024.01.22.00
path: /opt/homebrew/bin/watchman
Managers:
CocoaPods:
version: 1.14.3
path: /Users/hknzbyn/.rvm/gems/ruby-2.7.5/bin/pod
SDKs:
iOS SDK:
Platforms:
- DriverKit 23.2
- iOS 17.2
- macOS 14.2
- tvOS 17.2
- watchOS 10.2
Android SDK:
API Levels:
- "31"
- "33"
- "34"
Build Tools:
- 28.0.3
- 30.0.3
- 33.0.0
- 33.0.1
- 33.0.2
- 34.0.0
System Images:
- android-31 | Google APIs ARM 64 v8a
- android-31 | Google Play ARM 64 v8a
- android-33 | Google APIs ARM 64 v8a
Android NDK: Not Found
IDEs:
Android Studio: 2022.2 AI-222.4459.24.2221.10121639
Xcode:
version: 15.1/15C65
path: /usr/bin/xcodebuild
Languages:
Java:
version: 17.0.10
path: /usr/bin/javac
Ruby:
version: 2.7.5
path: /Users/hknzbyn/.rvm/rubies/ruby-2.7.5/bin/ruby
npmPackages:
"@react-native-community/cli": Not Found
react:
installed: 18.2.0
wanted: 18.2.0
react-native:
installed: 0.73.4
wanted: 0.73.4
react-native-macos: Not Found
npmGlobalPackages:
"react-native": Not Found
Android:
hermesEnabled: true
newArchEnabled: false
iOS:
hermesEnabled: true
newArchEnabled: false

Steps to Reproduce

Install "@react-native-ml-kit/text-recognition": "^1.5.1" on the 0.73.4 react-native version and try to build with debug mode from Xcode. You will encounter an error.

npx pod-install iOS is not working

What happened?

After running npx pod-install iOS is get the following error if I run npm run ios -- --simulator="iPhone 15"
The following build commands failed:
Ld /Users/jonathanzimmermann/Library/Developer/Xcode/DerivedData/smartConversion-exitpdgrxydjmqdktlbqhqqgoujd/Build/Products/Debug-iphonesimulator/smartConversion.app/smartConversion normal (in target 'smartConversion' from project 'smartConversion')
(1 failure)

Do you have an idea what is the reason for that error?

Version

@react-native-ml-kit/barcode-scanning: version@react-native-ml-kit/face-detection: version@react-native-ml-kit/identify-languages: version@react-native-ml-kit/image-labeling: version@react-native-ml-kit/text-recognition: version@react-native-ml-kit/translate-text: version

I'm using the version 1.5.1

Which ML Kit packages do you use?

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

System:
OS: macOS 14.3.1
CPU: (10) arm64 Apple M1 Pro
Memory: 3.65 GB / 32.00 GB
Shell:
version: "5.9"
path: /bin/zsh
Binaries:
Node:
version: 21.7.1
path: ~/.nvm/versions/node/v21.7.1/bin/node
Yarn: Not Found
npm:
version: 10.5.0
path: ~/.nvm/versions/node/v21.7.1/bin/npm
Watchman: Not Found
Managers:
CocoaPods:
version: 1.15.2
path: /opt/homebrew/bin/pod
SDKs:
iOS SDK:
Platforms:
- DriverKit 23.2
- iOS 17.2
- macOS 14.2
- tvOS 17.2
- visionOS 1.0
- watchOS 10.2
Android SDK: Not Found
IDEs:
Android Studio: 2023.2 AI-232.10227.8.2321.11479570
Xcode:
version: 15.2/15C500b
path: /usr/bin/xcodebuild
Languages:
Java:
version: 17.0.8.1
path: /opt/homebrew/opt/openjdk@17/bin/javac
Ruby:
version: 2.6.10
path: /usr/bin/ruby
npmPackages:
"@react-native-community/cli": Not Found
react:
installed: 18.2.0
wanted: 18.2.0
react-native:
installed: 0.73.6
wanted: 0.73.6
react-native-macos: Not Found
npmGlobalPackages:
"react-native": Not Found
Android:
hermesEnabled: true
newArchEnabled: false
iOS:
hermesEnabled: true
newArchEnabled: false

Steps to Reproduce

Run:
npm install @react-native-ml-kit/text-recognition
npx pod-install iOS
npm run ios -- --simulator="iPhone 15" --> here the error occurs.

GTMSessionFetcher/Core version error with latest firebase

What happened?

pod update is failing with latest firebase version. Versions:

"@react-native-firebase/app": "^17.0.0",
"@react-native-firebase/auth": "^17.0.0",
"@react-native-firebase/database": "^17.0.0",
"@react-native-ml-kit/text-recognition": "^1.2.1",

Error with pod update for ios:

Command `pod install` failed.
└─ Cause: CocoaPods could not find compatible versions for pod "GTMSessionFetcher/Core":
  In snapshot (Podfile.lock):
    GTMSessionFetcher/Core (< 4.0, = 3.1.0, >= 2.1)

  In Podfile:
    RNFBAuth (from `../node_modules/@react-native-firebase/auth`) was resolved to 17.0.0, which depends on
      Firebase/Auth (= 10.4.0) was resolved to 10.4.0, which depends on
        FirebaseAuth (~> 10.4.0) was resolved to 10.4.0, which depends on
          GTMSessionFetcher/Core (< 4.0, >= 2.1)

    RNMLKitTextRecognition (from `../node_modules/@react-native-ml-kit/text-recognition`) was resolved to 1.2.1, which depends on
      GoogleMLKit/TextRecognitionJapanese (= 2.6.0) was resolved to 2.6.0, which depends on
        MLKitTextRecognitionJapanese (~> 1.0.0-beta3) was resolved to 1.0.0-beta3, which depends on
          MLKitVision (~> 3.0) was resolved to 3.0.0, which depends on
            GTMSessionFetcher/Core (~> 1.1)


You have either:
 * changed the constraints of dependency `GTMSessionFetcher/Core` inside your development pod `RNMLKitTextRecognition`.
   You should run `pod update GTMSessionFetcher/Core` to apply changes you've made.

Version

1.2.1

Which ML Kit packages do you use?

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

System:
OS: macOS 13.1
CPU: (8) x64 Apple M1
Memory: 50.62 MB / 16.00 GB
Shell: 5.8.1 - /bin/zsh
Binaries:
Node: 16.13.0 - ~/.nvm/versions/node/v16.13.0/bin/node
Yarn: 1.22.19 - /usr/local/bin/yarn
npm: 8.1.0 - ~/.nvm/versions/node/v16.13.0/bin/npm
Watchman: 2023.01.09.00 - /usr/local/bin/watchman
Managers:
CocoaPods: 1.11.3 - /Users/priyankjain/.rvm/rubies/ruby-2.7.5/bin/pod
SDKs:
iOS SDK:
Platforms: DriverKit 22.2, iOS 16.2, macOS 13.1, tvOS 16.1, watchOS 9.1
Android SDK: Not Found
IDEs:
Android Studio: Not Found
Xcode: 14.2/14C18 - /usr/bin/xcodebuild
Languages:
Java: 11.0.8 - /usr/bin/javac
npmPackages:
@react-native-community/cli: Not Found
react: 18.2.0 => 18.2.0
react-native: 0.71.2 => 0.71.2
react-native-macos: Not Found
npmGlobalPackages:
react-native: Not Found

Steps to Reproduce

Add latest packages of react native firebase and text recognition and do pod install

iOS - duplicate symbols for architecture arm64

What happened?

Trying to run the project on IOS returns the error duplicate symbols for architecture arm64

My dependencies:

"dependencies": {
    "@react-native-community/geolocation": "^3.0.4",
    "@react-native-ml-kit/text-recognition": "^1.2.1",
    "@react-navigation/native": "^6.1.3",
    "@react-navigation/native-stack": "^6.9.9",
    "@reduxjs/toolkit": "^1.8.2",
    "react": "18.2.0",
    "react-native": "0.71.2",
    "react-native-device-info": "^10.3.0",
    "react-native-fast-image": "^8.6.3",
    "react-native-image-picker": "^5.1.0",
    "react-native-inappbrowser-reborn": "^3.7.0",
    "react-native-notifications": "^4.3.2",
    "react-native-safe-area-context": "^4.5.0",
    "react-native-screens": "^3.19.0",
    "react-native-sensitive-info": "^6.0.0-alpha.9",
    "react-redux": "^8.0.2",
    "redux": "^4.2.0",
    "redux-thunk": "^2.4.1",
    "socket.io-client": "^4.5.1"
  }

Log Output:

duplicate symbol '_OBJC_CLASS_$_GDTCCTCompressionHelper' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCCTCompressionHelper.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCCTCompressionHelper' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCCTCompressionHelper.o)
duplicate symbol '_OBJC_CLASS_$_GDTCCTUploader' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCCTUploader.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCCTUploader' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCCTUploader.o)
duplicate symbol '_OBJC_CLASS_$_GDTCCTUploadOperation' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCCTUploadOperation.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCCTUploadOperation' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCCTUploadOperation.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORClock' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORClock.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORClock' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORClock.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORDirectorySizeTracker' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORDirectorySizeTracker.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORDirectorySizeTracker' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORDirectorySizeTracker.o)
duplicate symbol '_OBJC_CLASS_$_GDTCOREndpoints' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCOREndpoints.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCOREndpoints' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCOREndpoints.o)
duplicate symbol '_OBJC_CLASS_$_GDTCOREvent' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCOREvent.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCOREvent' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCOREvent.o)
duplicate symbol '_GDTCCTNeedsNetworkConnectionInfo' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCOREvent+GDTCCTSupport.o)
duplicate symbol '_GDTCCTNetworkConnectionInfo' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCOREvent+GDTCCTSupport.o)
duplicate symbol '_GDTCCTEventCodeInfo' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCOREvent+GDTCCTSupport.o)
duplicate symbol '_kGDTCORBatchComponentsTargetKey' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORFlatFileStorage.o)
duplicate symbol '_kGDTCOREventComponentsQoSTierKey' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORFlatFileStorage.o)
duplicate symbol '_kGDTCOREventComponentsExpirationKey' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORFlatFileStorage.o)
duplicate symbol '_kGDTCORBatchComponentsExpirationKey' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORFlatFileStorage.o)
duplicate symbol '_kGDTCOREventComponentsEventIDKey' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORFlatFileStorage.o)
duplicate symbol '_kGDTCORBatchComponentsBatchIDKey' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORFlatFileStorage.o)
duplicate symbol '_kGDTCOREventComponentsMappingIDKey' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORFlatFileStorage.o)
duplicate symbol '_kGDTCORFlatFileStorageSizeLimit' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORFlatFileStorage.o)
duplicate symbol '_GDTCORFlatFileStorageErrorDomain' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORFlatFileStorage.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORFlatFileStorage' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORFlatFileStorage.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORFlatFileStorage' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORFlatFileStorage.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORLifecycle' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORLifecycle.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORLifecycle' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORLifecycle.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORLogSourceMetrics' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORLogSourceMetrics.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORLogSourceMetrics' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORLogSourceMetrics.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORMetrics' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORMetrics.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORMetrics' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORMetrics.o)
duplicate symbol '_GDTCCTConstructTimeWindow' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORMetrics+GDTCCTSupport.o)
duplicate symbol '_GDTCCTGetLogSourceMetricsCount' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORMetrics+GDTCCTSupport.o)
duplicate symbol '_GDTCCTConstructGlobalMetrics' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORMetrics+GDTCCTSupport.o)
duplicate symbol '_GDTCCTConstructLogSourceMetrics' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORMetrics+GDTCCTSupport.o)
duplicate symbol '_GDTCCTConvertEventDropReasonToProtoReason' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORMetrics+GDTCCTSupport.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORMetricsController' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORMetricsController.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORMetricsController' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORMetricsController.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORMetricsMetadata' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORMetricsMetadata.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORMetricsMetadata' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORMetricsMetadata.o)
duplicate symbol '_GDTCORRootDirectory' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORApplication' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORApplication' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_kGDTCORApplicationWillTerminateNotification' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_kGDTCORApplicationDidEnterBackgroundNotification' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_kGDTCORApplicationWillEnterForegroundNotification' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_kGDTCORVersion' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_GDTCORDeviceModel' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_GDTCORDecodeArchiveAtPath' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_GDTCOREncodeArchive' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_GDTCORDecodeArchive' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_GDTCORWriteDataToFile' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_GDTCORReachabilityFlagsReachable' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_GDTCORNetworkTypeMessage' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_GDTCORNetworkMobileSubTypeMessage' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_GDTCORBackgroundIdentifierInvalid' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_GDTCORReachabilityFlagsContainWWAN' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORPlatform.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORReachability' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORReachability.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORReachability' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORReachability.o)
duplicate symbol '_GDTCORMetricsControllerInstanceForTarget' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORRegistrar.o)
duplicate symbol '_GDTCORStoragePromiseInstanceForTarget' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORRegistrar.o)
duplicate symbol '_GDTCORStorageInstanceForTarget' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORRegistrar.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORRegistrar' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORRegistrar.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORRegistrar' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORRegistrar.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORStorageEventSelector' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORStorageEventSelector.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORStorageEventSelector' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORStorageEventSelector.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORStorageMetadata' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORStorageMetadata.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORStorageMetadata' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORStorageMetadata.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORTransformer' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORTransformer.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORTransformer' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORTransformer.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORTransport' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORTransport.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORTransport' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORTransport.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORUploadBatch' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORUploadBatch.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORUploadBatch' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORUploadBatch.o)
duplicate symbol '_OBJC_CLASS_$_GDTCORUploadCoordinator' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORUploadCoordinator.o)
duplicate symbol '_OBJC_METACLASS_$_GDTCORUploadCoordinator' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleDataTransport/libGoogleDataTransport.a(GDTCORUploadCoordinator.o)
duplicate symbol '_OBJC_CLASS_$_GULAppEnvironmentUtil' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULAppEnvironmentUtil.o)
duplicate symbol '_OBJC_METACLASS_$_GULAppEnvironmentUtil' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULAppEnvironmentUtil.o)
duplicate symbol '_kGULHeartbeatStorageDirectory' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULHeartbeatDateStorage.o)
duplicate symbol '_OBJC_CLASS_$_GULHeartbeatDateStorage' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULHeartbeatDateStorage.o)
duplicate symbol '_OBJC_METACLASS_$_GULHeartbeatDateStorage' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULHeartbeatDateStorage.o)
duplicate symbol '_OBJC_CLASS_$_GULHeartbeatDateStorageUserDefaults' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULHeartbeatDateStorageUserDefaults.o)
duplicate symbol '_OBJC_METACLASS_$_GULHeartbeatDateStorageUserDefaults' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULHeartbeatDateStorageUserDefaults.o)
duplicate symbol '_OBJC_CLASS_$_GULKeychainStorage' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULKeychainStorage.o)
duplicate symbol '_OBJC_METACLASS_$_GULKeychainStorage' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULKeychainStorage.o)
duplicate symbol '_OBJC_CLASS_$_GULKeychainUtils' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULKeychainUtils.o)
duplicate symbol '_OBJC_METACLASS_$_GULKeychainUtils' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULKeychainUtils.o)
duplicate symbol '_kGULKeychainUtilsErrorDomain' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULKeychainUtils.o)
duplicate symbol '_getGULLoggerClient' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_GULLogError' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_OBJC_CLASS_$_GULLoggerWrapper' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_OBJC_METACLASS_$_GULLoggerWrapper' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_GULResetLogger' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_GULLogInfo' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_GULLoggerRegisterVersion' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_GULSetLoggerLevel' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_GULIsLoggableLevel' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_GULLogDebug' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_GULLoggerForceDebug' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_GULLogWarning' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_getGULClientQueue' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_kGULLoggerASLClientFacilityName' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_getGULLoggerDebugMode' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_GULLogNotice' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_GULLogBasic' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_GULLoggerEnableSTDERR' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_GULLoggerInitializeASL' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Logger.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULLogger.o)
duplicate symbol '_kGULSecureCodingError' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULSecureCoding.o)
duplicate symbol '_OBJC_CLASS_$_GULSecureCoding' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULSecureCoding.o)
duplicate symbol '_OBJC_METACLASS_$_GULSecureCoding' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULSecureCoding.o)
duplicate symbol '_OBJC_CLASS_$_GULURLSessionDataResponse' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULURLSessionDataResponse.o)
duplicate symbol '_OBJC_METACLASS_$_GULURLSessionDataResponse' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-Environment.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULURLSessionDataResponse.o)
duplicate symbol '_OBJC_CLASS_$_GULUserDefaults' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-UserDefaults.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULUserDefaults.o)
duplicate symbol '_OBJC_METACLASS_$_GULUserDefaults' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities-UserDefaults.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/GoogleUtilities/libGoogleUtilities.a(GULUserDefaults.o)
duplicate symbol '_OBJC_CLASS_$_FBLPromise' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/FBLPromises.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/PromisesObjC/libPromisesObjC.a(FBLPromise.o)
duplicate symbol '_OBJC_METACLASS_$_FBLPromise' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/FBLPromises.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/PromisesObjC/libPromisesObjC.a(FBLPromise.o)
duplicate symbol '_FBLPromiseRetryDefaultAttemptsCount' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/FBLPromises.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/PromisesObjC/libPromisesObjC.a(FBLPromise+Retry.o)
duplicate symbol '_FBLPromiseRetryDefaultDelayInterval' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/FBLPromises.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/PromisesObjC/libPromisesObjC.a(FBLPromise+Retry.o)
duplicate symbol '_FBLWaitForPromisesWithTimeout' in:
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/FBLPromises.o
    /Users/macprobruker1/Library/Developer/Xcode/DerivedData/MyProject-egasdvyakduwmecbcbtmyjpqaldb/Build/Products/Debug-iphoneos/PromisesObjC/libPromisesObjC.a(FBLPromise+Testing.o)
ld: 122 duplicate symbols for architecture arm64

Version

@react-native-ml-kit/text-recognition: ^1.2.1

Which ML Kit packages do you use?

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

System:
OS: macOS 13.0
CPU: (8) x64 Intel(R) Core(TM) i5-8257U CPU @ 1.40GHz
Memory: 84.69 MB / 16.00 GB
Shell: 5.8.1 - /bin/zsh
Binaries:
Node: 16.14.0 - /usr/local/bin/node
Yarn: 1.22.19 - /usr/local/bin/yarn
npm: 8.3.1 - /usr/local/bin/npm
Watchman: 2022.03.21.00 - /usr/local/bin/watchman
Managers:
CocoaPods: 1.11.3 - /usr/local/bin/pod
SDKs:
iOS SDK:
Platforms: DriverKit 21.4, iOS 16.0, macOS 12.3, tvOS 16.0, watchOS 9.0
Android SDK: Not Found
IDEs:
Android Studio: 2022.1 AI-221.6008.13.2211.9514443
Xcode: 14.0.1/14A400 - /usr/bin/xcodebuild
Languages:
Java: 11.0.18 - /usr/bin/javac
npmPackages:
@react-native-community/cli: Not Found
react: Not Found
react-native: Not Found
react-native-macos: Not Found
npmGlobalPackages:
react-native: Not Found

Steps to Reproduce

The only dependency that uses a google service (firebase - fcm) is "react-native-notifications": "^4.3.2". Maybe this could be related to the issue. So using this dependency could reproduce the error I'm seeing.

Publish the latest text-recognition changes to npm?

What happened?

Can you publish the latest updates to npm please?

The latest version: 1.2.1 was published 11 months ago.

Version

@react-native-ml-kit/barcode-scanning: version@react-native-ml-kit/face-detection: version@react-native-ml-kit/identify-languages: version@react-native-ml-kit/image-labeling: version@react-native-ml-kit/text-recognition: version@react-native-ml-kit/translate-text: version

Which ML Kit packages do you use?

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

N/A

Steps to Reproduce

N/A

Plugin with id 'maven' not found.

I'm getting the following error:

`* What went wrong:
A problem occurred evaluating project ':react-native-ml-kit_face-detection'.

Plugin with id 'maven' not found.
`

Build issue on Android

What happened?

Hello!

Are there any additional steps to get Android to work properly? Everything works great on IOS, get an error when starting Android app, and it immediately crashes.

Error:

FATAL EXCEPTION: create_react_context
java.lang.NoSuchMethodError: No static method getClient()Lcom/google/mlkit/vision/text/TextRecognizer; in class Lcom/google/mlkit/vision/text/TextRecognition;

Version

@react-native-ml-kit/barcode-scanning: version@react-native-ml-kit/face-detection: version@react-native-ml-kit/identify-languages: version@react-native-ml-kit/image-labeling: version@react-native-ml-kit/text-recognition: version@react-native-ml-kit/translate-text: version

Which ML Kit packages do you use?

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

mac m2
pixel 7 android studio sdk 33.

Steps to Reproduce

install package,
implement package in react native code,
build android app.

Single example app

Problem

The current structure treats each package as an isolated project with its own example app, this approach makes the repo pretty big and makes sharing code between packages harder.

Solution

Creating one central example app for all the existing packages. The app will include all the packages as dependencies, it will include a screen for each package.

This makes it easy to add new packages and validate if package conflict with one another.

Performance degradation in iOS simulator when using MLKit

What happened?

This library was easy to install and use, but I noticed that I got a warning that I needed to use Rosetta in order to be compatible with other libraries.

Screenshot 2023-10-31 at 16 46 21

Additionally, I noticed there was a slow down in the app when using Rosetta in the Simulator, which makes some sense. I traced the issue back to Google's MLKit Podspec, which is excluding arm64 simulator builds, which means Xcode is forced to use x386 and then use Rosetta for the other libraries.

https://github.com/CocoaPods/Specs/blob/master/Specs/b/e/b/GoogleMLKit/4.0.0/GoogleMLKit.podspec.json#L18

Since the MLKit Cocoapod would obviously have arm64 support, you can force Cocoapods to not switch the architecture like so:

post_install do |installer|
    # put this at the end of this block
    installer.pods_project.build_configurations.each do |config|
       config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
    end
end

This worked - the app built for the simulator without forcing me to use Rosetta. However, the performance degradation still persisted. An example of this is that the frame rate is seriously slow on a table when scrolling.

The production build does not appear to have this problem, or at least it is far less so. I'm not sure how to explain this!

Version

latest

Which ML Kit packages do you use?

  • @react-native-ml-kit/barcode-scanning
  • @react-native-ml-kit/face-detection
  • @react-native-ml-kit/identify-languages
  • @react-native-ml-kit/image-labeling
  • @react-native-ml-kit/text-recognition
  • @react-native-ml-kit/translate-text

What platforms are you seeing this issue on?

  • Android
  • iOS

System Information

System:
  OS: macOS 14.1
  CPU: (10) arm64 Apple M1 Max
  Memory: 1.01 GB / 64.00 GB
  Shell:
    version: "5.9"
    path: /bin/zsh
Binaries:
  Node:
    version: 20.8.0
    path: /opt/homebrew/bin/node
  Yarn:
    version: 1.22.19
    path: ~/.yarn/bin/yarn
  npm:
    version: 10.1.0
    path: /opt/homebrew/bin/npm
  Watchman:
    version: 2023.09.25.00
    path: /opt/homebrew/bin/watchman
Managers:
  CocoaPods:
    version: 1.11.3
    path: /Users/<redacted>/.rbenv/shims/pod
SDKs:
  iOS SDK:
    Platforms:
      - DriverKit 23.0
      - iOS 17.0
      - macOS 14.0
      - tvOS 17.0
      - watchOS 10.0
  Android SDK: Not Found
IDEs:
  Android Studio: Not Found
  Xcode:
    version: 15.0.1/15A507
    path: /usr/bin/xcodebuild
Languages:
  Java:
    version: 18.0.1
    path: /usr/bin/javac
  Ruby:
    version: 2.7.6
    path: /Users/<redacted>/.rbenv/shims/ruby
npmPackages:
  "@react-native-community/cli": Not Found
  react:
    installed: 18.2.0
    wanted: 18.2.0
  react-native:
    installed: 0.72.6
    wanted: ^0.72.6
  react-native-macos: Not Found
npmGlobalPackages:
  "*react-native*": Not Found
Android:
  hermesEnabled: true
  newArchEnabled: false
iOS:
  hermesEnabled: true
  newArchEnabled: false

Steps to Reproduce

Explained above.

Better documentation

Problem

Currently, not all the APIs are well documented. We need a central place to put the docs for all our modules and APIs.

We can try Docusaurus.

GoogleMLKit/TextRecognition pods can be updated to 3.2.0

According Google Dev docs, Text Recognition v2 is here now.:

Include the following ML Kit pods in your Podfile:

# To recognize Latin script
pod 'GoogleMLKit/TextRecognition', '3.2.0'
# To recognize Chinese script
pod 'GoogleMLKit/TextRecognitionChinese', '3.2.0'
# To recognize Devanagari script
pod 'GoogleMLKit/TextRecognitionDevanagari', '3.2.0'
# To recognize Japanese script
pod 'GoogleMLKit/TextRecognitionJapanese', '3.2.0'
# To recognize Korean script
pod 'GoogleMLKit/TextRecognitionKorean', '3.2.0'

After you install or update your project's Pods, open your Xcode project using its .xcworkspace. ML Kit is supported in Xcode version 12.4 or greater.

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.