6
6

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 5 years have passed since last update.

Realm Java 0.90.0でRealmBaseAdapterが別リポジトリへ移動になった

Last updated at Posted at 2016-05-10

#0.90.0の変更点
0.90の変更点は以下の3つ。

  • java.util.Date型でミリ秒精度をサポート
    これまで秒単位に丸められていたDate型の値が、ミリ秒まで情報を保持するようになりました。

  • RealmBaseAdapterがRealm JavaからAndroid Adapterに移動
    dependenciesに以下の内容を追記する必要があります。

compile 'io.realm:android-adapters:1.0.1'

  • APIの整理
    ごちゃごちゃしてたので整理したそうです。いろいろ変更になってます。

#0.87.5と比べてみてどうなの?
日本語のドキュメントがある0.87.5と比べてみると、APIを整理したこともあって、いろいろとDeprecatedになっているなという印象でした。詳細はCHANGELOG参照。

例えば、RealmのallObjects()がDeprecatedになっていたり、RealmResultsのclear()とremove()がDeprecatedになって、deleteAllFromRealm()とdeleteFromRealm()が追加になっていたりとか。

#RealmBaseAdapterの変更点
ドキュメント0.90.0のサンプルコードと、GitHubにあるAndroid Adapterのサンプルコードを比べると、コンストラクタの引数が異なっていました。

ドキュメントの方が古いままのようですので、お使いになる方はGitHubにあるサンプルコードを確認してください。

#参考

6
6
2

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
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?