Skip to content

aafa/realm-sbt-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SBT plugin for Realm.io

Notice! This is proof-of-concept only, I don't have any plans at this moment to continue working on this project.

This plugin will let you work with Realm DB for Android from scala code running with android-sdk-plugin

Install

Add sbt plugin to your build configuration (i.e. plugins.sbt)

addSbtPlugin("com.github.aafa" % "realm-sbt-plugin" % "0.1.2")

Then make sure you have enabled it for your project

import com.github.aafa.RealmPlugin

Project(id = "app", base = file(".")).enablePlugins(RealmPlugin)

Usage

Add a model class

class User extends RealmObject{
  @PrimaryKey var id: Long = 1
  var name: String = "test"
}

And other Realm stuff and do android:run

See example project

About

realm-sbt-plugin

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages