Skip to content

Commit

Permalink
Merge pull request #99 from veryfi/veryfi/feature/ANDLENS-1175-update…
Browse files Browse the repository at this point in the history
…-android-lens

ANDLENS-1175: Updated Android Lens to 2.0.0.1
  • Loading branch information
decim92 authored Dec 16, 2024
2 parents f5b9820 + 61f0dfa commit 6239632
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ package manager for Java.
Add in your project build.gradle file the veryfi lens receipts android SDK dependency:
```ruby
dependencies {
implementation 'com.veryfi.lens:veryfi-lens-receipts-sdk:1.7.3.37'
implementation 'com.veryfi.lens:veryfi-lens-receipts-sdk:2.0.0.1'
}
```
Min SDK Android 6.0 (API level 23)
Expand Down
14 changes: 7 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android {
}

androidResources {
noCompress "veryfi"
noCompress += "veryfi"
}

buildFeatures {
Expand All @@ -29,12 +29,12 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = "11"
jvmTarget = "17"
}

buildTypes {
Expand All @@ -50,12 +50,12 @@ android {
dependencies {
// noinspection GradleDependency
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.11.0'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.12.0'
implementation 'com.github.martin-stone:hsv-alpha-color-picker-android:3.0.1'
implementation 'com.github.lriccardo:TimelineView:1.1.2'
implementation 'com.github.pvarry:android-json-viewer:v1.1'

// Veryfi lens
implementation 'com.veryfi.lens:veryfi-lens-receipts-sdk:1.7.3.37'
implementation 'com.veryfi.lens:veryfi-lens-receipts-sdk:2.0.0.1'
}
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
buildscript {
ext.kotlin_version = '1.9.23'
dependencies {
classpath 'com.android.tools.build:gradle:8.3.1'
classpath 'com.android.tools.build:gradle:8.7.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.4.2'
}
}
plugins {
id 'com.android.application' version '7.4.0' apply false
id 'com.android.library' version '7.4.0' apply false
id 'com.android.application' version '8.7.3' apply false
id 'com.android.library' version '8.7.3' apply false
id 'org.jetbrains.kotlin.android' version '1.9.23' apply false
}
task clean(type: Delete) {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# The setting is particularly useful for tweaking memory settings.
android.enableJetifier=true
android.useAndroidX=true
org.gradle.jvmargs=-Xmx1536m
org.gradle.jvmargs=-Xmx8g
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
Expand Down
6 changes: 3 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Mar 22 17:39:45 COT 2022
#Mon Sep 02 10:46:25 COT 2024
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 6239632

Please sign in to comment.