Have a project or create one in the Firebase console.

Add an iOS application or, if you already have one, select the existing one.

Add the GoogleService-Info.plist file to the root of the project.

Add the Firebase SDK to the project as shown in the image, but with one difference: in the podfile of the client’s project, import only the following dependencies and add a line of code before importing them inside the application's target:
swift
CopiarEditar
use_frameworks!
pod 'Firebase/Messaging'
pod 'Firebase/Analytics'

MasivPushIosSdk is available through
Swift Package Manager. To install it, simply follow these steps:
Open your project in Xcode and navigate to project settings > Package Dependencies and click the + button.

In the search option, enter the package URL:
https://dev.azure.com/masivPublicSdks/MasivPushSdks/_git/MasivPushIosSdk
Set the dependency rule according to the current SDK version. For example: Exact Version 1.1.0 Click Add Package.

In the next screen, select the package MasivPushIosSdk and add the package to the main application target.

Open the main application target and, in Frameworks, Libraries, and Embedded Content, click the + button.

You should see the MasivPushIosSdk package under Package MasivPushIosSdk. Select it and click Add.
