Skip to content
This repository was archived by the owner on Aug 23, 2024. It is now read-only.

Commit 7d91e6a

Browse files
author
Stan Wijckmans
committed
Replace nullable with built in Android one.
1 parent 16f64d4 commit 7d91e6a

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
jcenter()
44
}
55
dependencies {
6-
classpath 'com.android.tools.build:gradle:2.2.3'
6+
classpath 'com.android.tools.build:gradle:2.3.0'
77
}
88
}
99

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
33
zipStoreBase=GRADLE_USER_HOME
44
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4-all.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4.1-all.zip

mvvm/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
defaultConfig {
99
minSdkVersion 16
1010
targetSdkVersion 25
11-
versionCode 4
12-
versionName "1.0.3"
11+
versionCode
12+
versionName "1.0.4"
1313
}
1414

1515
dataBinding {
@@ -18,8 +18,8 @@ android {
1818
}
1919

2020
dependencies {
21-
compile 'com.android.support:appcompat-v7:25.2.0'
22-
compile 'com.google.dagger:dagger:2.9'
21+
compile 'com.android.support:appcompat-v7:25.3.1'
22+
compile 'com.google.dagger:dagger:2.10'
2323
}
2424

2525
task createJavaDoc(type: Javadoc) {
@@ -43,7 +43,7 @@ publishing {
4343
maven(MavenPublication) {
4444
groupId 'be.stannieman'
4545
artifactId 'mvvm'
46-
version '1.0.3'
46+
version '1.0.4'
4747
artifact "$buildDir\\outputs\\aar\\signed-${project.getName()}-release.aar"
4848
artifact createJavaDocJar
4949
artifact createSourcesJar

mvvm/src/main/java/stannieman/mvvm/ViewModelBase.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
import android.content.Intent;
44
import android.databinding.BaseObservable;
55
import android.os.Bundle;
6-
7-
import org.jetbrains.annotations.Nullable;
6+
import android.support.annotation.Nullable;
87

98
import javax.inject.Inject;
109

0 commit comments

Comments
 (0)