1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

'Identifiable' is only available in application extensions for iOS 13 or newer の直し方

Posted at

###概要
備忘録です

###このエラーが起こってしまう原因
RealmSwiftのバージョンが最新じゃないから。
古いバージョンのRealmを使っているときに起こってしまう

###解決策
このエラーが起こっているディレクトリに対して、

pod update Realm RealmSwift

を行う。これを行うと、podfileの中のRealm, RealmSwiftのバージョンがアップデートされ、
ビルドが通るようになります。

###注意
自分のpodfile内を確認して、Realmの横に何か数字が書いてある時は、消しておく
これを書いてしまっていると、RealmSwiftのバージョンが固定されてしまい、
仮にさっきのコマンドを打ったとしてもアップデートされないので注意してください。
自分がまさにこれをやってしまってたせいでずっと治らなくて、何時間も無駄にしました。

###まとめ
誰かの役に立てば幸いです。

###参考
https://github.com/realm/realm-cocoa/issues/7460

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?