본문 바로가기

분류 전체보기

(13)
[Xcode] Deep Link Firebase > Dynamic Links > 새 동적 생성 > Android, IOS 설정 > 앱의 Google Play 페이지, 앱의 App Store 페이지 > 생성 완료 Xcode > Runner > Targets - Runner > Signing & Capavilities > Capavility > Enable Associated Domains > Click + Button > Insert applinks:[name.page.link] Xcode > Runner > Target - Runner > Info > URL Types > Click + Button > URL Schemes > Insert Bundle Id
[Flutter] Device Orientation [Issue] Device Orientation [Solution] SystemChrome.setPreferredOrientations([ DeviceOrientation.landscapeRight, DeviceOrientation.landscapeLeft, ]);
[Android] usesCleartextTraffic [Error] permission error [Solution] Manifest > add:
[Xcode] Clear Derived Data [Error] clear Derived Data [Solution] Xcode > Xcode > Preferences > Locations > Derived Data > Click (Right Arrow) > delete file
[Xcode] SWIFT_VERSION [Error] [!] Unable to determine Swift version for the following pods: - `` does not specify a Swift version and none of the targets (`Runner`) integrating it have the `SWIFT_VERSION` attribute set. Please contact the author or set the `SWIFT_VERSION` attribute in at least one of the targets that integrate this pod. [Solution] Xcode > Runner > Build Settings > + > User-Defined > SWIFT_VERSION: 4.2
[Flutter] Setting Run/Debug Configurations for IOS [Configurations - xcode] [Configurations - Flutter] [Command] #flutter build ios --debug --flavor debugdev #flutter build ios --debug --flavor debugprod #flutter build ios --release --flavor releasedev #flutter build ios --release --flavor releaseprod
[Xcode] UIBackgroundModes remote-notification [Error] 2019-06-11 11:35:23.696886+0900 Runner[4138:1312265] You've implemented -[ application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist. [Solution] append info.plist UIBackgroundModes remote-notification
[Xcode] UIBackgroundModes fetch [Error] 2019-06-11 11:31:02.853505+0900 Runner[4130:1311477] You've implemented -[ application:performFetchWithCompletionHandler:], but you still need to add "fetch" to the list of your supported UIBackgroundModes in your Info.plist. [Solution] append info.plist UIBackgroundModes fetch