Giter Site home page Giter Site logo

Comments (3)

turlvo avatar turlvo commented on June 12, 2024

안녕하세요.

확인해보니 iOS의 경우 ChannelIOSDK SDK가 11.6.1이 설치되고, boot fail이 발생하는 것 확인 하였습니다.
오래 관리 못해 불편을 드렸네요 ㅠㅠ

현재 플러터 패키지는
Android의 경우는 명시적으로 ChannelIOSDK SDK 10.0.5 지정되어 있었는데,
iOS의 경우는 latest로 되어 있어서 문제가 발생하였습니다.

우선 빠른 해결책으로는 iOS도 Android와 동일한 ChannelIOSDK 버전을 사용하도록 하는 방법이 있습니다.

프로젝트 PodFile에 추가했던 아래의 부분을 아래와 같이 적용 후 확인 부탁드립니다.
AS-IS

pod 'ChannelIOSDK', podspec: 'https://mobile-static.channel.io/ios/latest/xcframework.podspec'

TO-BE

pod 'ChannelIOSDK', podspec: 'https://mobile-static.channel.io/ios/10.0.5/xcframework.podspec'

최신 ChannelIOSDK에서 문제는 더 확인해 보겠습니다.

from channel_talk_flutter.

turlvo avatar turlvo commented on June 12, 2024

추가 확인 사항 전달드립니다.

Flutter 버전 업 된 이후 변경된 건지 모르겠지만,
Plugin쪽에 application 핸들러에 있는 ChannelIO.initialize(application) 부분이 호출이 안되어서 발생한 문제입니다.

Project의 AppDelegate.swift 에서 호출 하도록 하면 최신 ChannelIOSDK 사용가능합니다.

</ios/Runner/AppDelegate.swift>

import UIKit
import Flutter
import ChannelIOFront


@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
  override func application(
    _ application: UIApplication,
    didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
  ) -> Bool {
    GeneratedPluginRegistrant.register(with: self)
      
    ChannelIO.initialize(application)

    return super.application(application, didFinishLaunchingWithOptions: launchOptions)
  }
}

from channel_talk_flutter.

turlvo avatar turlvo commented on June 12, 2024

추가로 Android도 ChannelIOSDK 11.5.0 사용하도록 수정 배포(2.5.0)하였습니다.

from channel_talk_flutter.

Related Issues (8)

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.