Skip to content

Commit

Permalink
Merge pull request #7 from veryfi/feature/update-gradle
Browse files Browse the repository at this point in the history
Update Build.gradle
  • Loading branch information
alejouribesanchez authored Dec 8, 2022
2 parents 7791e22 + 2452e7c commit eea6afb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencies {
//noinspection GradleDependency
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.veryfi.lens:veryfi-lens-cheques-sdk:1.6.2.1'
implementation 'com.veryfi.lens:veryfi-lens-cheques-sdk:1.6.2.2'
implementation 'com.google.android.material:material:1.7.0'
implementation 'com.github.martin-stone:hsv-alpha-color-picker-android:3.0.1'
implementation 'com.github.lriccardo:TimelineView:1.1.2'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ class LogsActivity : AppCompatActivity() {
}
}

@Deprecated("Deprecated in Java")
override fun onBackPressed() {
//do nothing
}
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
buildscript {
ext.kotlin_version = '1.7.10'
ext.kotlin_version = '1.7.20'
dependencies {
classpath 'com.android.tools.build:gradle:7.3.0'
classpath 'com.android.tools.build:gradle:7.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.3.14'
}
}
plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
id 'com.android.application' version '7.3.1' apply false
id 'com.android.library' version '7.3.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
Expand Down

0 comments on commit eea6afb

Please sign in to comment.