Skip to content
Prev Previous commit
Next Next commit
Update realm to 0.88.0.
  • Loading branch information
greenrobot-team committed Mar 14, 2016
commit 4f7afbc018b172d8c85ec10f1faa628a8ec10b28
7 changes: 5 additions & 2 deletions Realm/build.gradle
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
buildscript {
dependencies {
classpath dep.androidPlugin
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'io.realm:realm-gradle-plugin:0.88.0'
}
}

apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
apply plugin: 'realm-android'

android {
buildToolsVersion rootProject.ext.buildToolsVersion
compileSdkVersion rootProject.ext.compileSdkVersion

defaultConfig {
applicationId 'de.greenrobot.performance.realm'
minSdkVersion rootProject.ext.minSdkVersion
minSdkVersion 9
targetSdkVersion rootProject.ext.targetSdkVersion

testInstrumentationRunner 'android.test.InstrumentationTestRunner'
Expand All @@ -21,5 +25,4 @@ android {

dependencies {
androidTestCompile project(':Common')
androidTestCompile 'io.realm:realm-android:0.82.2'
}