Streamit Laravel - Documentation
Streamit Laravel

iOS Configuration

Estimated reading: 2 minutes

Setting up iOS for your Streamit Laravel Projec

Open Project in Xcode

  1. Open xcode.
  2. Select open another project.
  3. Open the ios directory within your app.
  4. Now, click on done button.

Change Bundle Name

  1. Select your project file icon in group and files panel.
  2. Then select target → info tab.
  3. At last change bundle name. By following these steps, you can change the bundle name for your ios target in xcode.

Change Bundle Identifier

Bundle Id is a unique Identifier of your of app on iOS and MacOS. iOS and MacOS use it to recognise updates to your app. The identifier must be unique for your app.

  1. Select your project file icon in group and files panel.
  2. Select general tab.
  3. After select general tab you can see the details of your application.
  4. In identity section, rename your Bundle identifier.

Change App Icons

  1. see How to Generate App Icons?
  2. In group and files panel find “Assets.xcassets” folder.
  3. In Assets.xcassets folder replace appicon.

Change the Google AdMob App ID Info.plist

<key>GADApplicationIdentifier</key>
<string>GOOGLE_ADMOB_APP_ID</string>

Configuration iOS Notification

  1. Enable Firebase Notification in Mobile for both click hear
  • Add the below code in appdelegate.swift file under ios folder in your project:
if #available(iOS 10.0, *) {
UNUserNotificationCenter.current().delegate
= self as? UNUserNotificationCenterDelegate
}