Skip to content
This repository has been archived by the owner on Sep 3, 2021. It is now read-only.

Commit

Permalink
Merge branch 'release/2.2.8' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
catt-stefano committed Oct 13, 2017
2 parents c5f3e20 + d87eaef commit 079644b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To start using the SDK, include this in your app *build.gradle*

```java
dependencies {
compile 'it.near.sdk:nearit:2.2.7'
compile 'it.near.sdk:nearit:2.2.8'
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ To start using the SDK, include this in your app *build.gradle*

```java
dependencies {
compile 'it.near.sdk:nearit:2.2.7'
compile 'it.near.sdk:nearit:2.2.8'
}
```

Expand Down
8 changes: 4 additions & 4 deletions nearit/src/main/java/it/near/sdk/NearItManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ public void resetProfileId() {
setProfileId(null);
}

public void resetProfileId(NearItUserProfile.ProfileFetchListener listener) {
public void resetProfileId(@NonNull NearItUserProfile.ProfileFetchListener listener) {
nearItUserProfile.setProfileId(null);
nearItUserProfile.getProfileId(context, listener);
}
Expand All @@ -291,15 +291,15 @@ public String getProfileId() {
return nearItUserProfile.getProfileId();
}

public void getProfileId(NearItUserProfile.ProfileFetchListener listener) {
public void getProfileId(@NonNull NearItUserProfile.ProfileFetchListener listener) {
nearItUserProfile.getProfileId(context, listener);
}

public void setUserData(String key, String value, UserDataNotifier listener) {
public void setUserData(String key, String value, @NonNull UserDataNotifier listener) {
nearItUserProfile.setUserData(context, key, value, listener);
}

public void setBatchUserData(Map<String, String> valuesMap, UserDataNotifier listener) {
public void setBatchUserData(Map<String, String> valuesMap, @NonNull UserDataNotifier listener) {
nearItUserProfile.setBatchUserData(context, valuesMap, listener);
}

Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ dependencies {
exclude group: 'com.android.support', module: 'support-annotations'
})

// compile 'it.near.sdk:nearit:2.2.7'
// compile 'it.near.sdk:nearit:2.2.8'
compile project(':nearit')
compile 'com.android.support:appcompat-v7:26.1.0'

Expand Down

0 comments on commit 079644b

Please sign in to comment.