Skip to content

Commit

Permalink
Merge pull request #84 from visenze/feature/PS-3189
Browse files Browse the repository at this point in the history
[PS-3189] handle productsearch error
  • Loading branch information
swVisenze authored Feb 8, 2022
2 parents 14d7a7a + d5dea47 commit 9395722
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
mavenCentral()
maven { url "https://jitpack.io" }
}
configurations.all {
resolutionStrategy.force "com.android.support:support-v4:23.1.1"
Expand Down
1 change: 1 addition & 0 deletions cameraDemo/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
buildscript {
repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
Expand Down
4 changes: 2 additions & 2 deletions doc/ProductSearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ With the release of ViSenze's Catalog system, ViSearch Android SDK will now incl
- Aggregate search results on a product level instead of image level
- Consistent data type in API response with Catalog’s schema

> Current stable version: 2.1.1
> Current stable version: 2.1.3
> Minimum Android SDK Version: API 9, Android 2.3
Expand Down Expand Up @@ -64,7 +64,7 @@ allprojects {
include the dependency in your project using gradle:
```gradle
implementation 'com.github.visenze:visenze-tracking-android:0.2.1'
implementation 'com.github.visenze:visearch-sdk-android:2.1.1'
implementation 'com.github.visenze:visearch-sdk-android:2.1.3'
```

### 1.3 Add User Permissions
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-all.zip
5 changes: 3 additions & 2 deletions visearch-android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
plugins {
id 'com.android.library'
id 'maven-publish'
}

def versionMajor = 2
def versionMinor = 1
def versionPatch = 2
version = '2.1.2'
def versionPatch = 3
version = '2.1.3'

android {
compileSdkVersion 29
Expand Down

0 comments on commit 9395722

Please sign in to comment.