Skip to content
This repository was archived by the owner on Jun 14, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 29
compileSdkVersion 33
defaultConfig {
applicationId "com.google.firebase.ml.md"
minSdkVersion 19
targetSdkVersion 29
targetSdkVersion 33
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand Down Expand Up @@ -36,20 +36,20 @@ androidExtensions {
}

dependencies {
implementation 'com.android.volley:volley:1.1.1'
implementation 'com.google.android.material:material:1.1.0'
implementation 'com.android.volley:volley:1.2.1'
implementation 'com.google.android.material:material:1.8.0'
implementation "android.arch.lifecycle:extensions:1.1.1"
implementation "androidx.annotation:annotation:1.1.0"
implementation "androidx.core:core-ktx:1.2.0"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0"
implementation 'androidx.preference:preference:1.1.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.71"
implementation "androidx.annotation:annotation:1.6.0"
implementation "androidx.core:core-ktx:1.10.0"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1"
implementation 'androidx.preference:preference:1.2.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20"

// MLKit Dependencies
implementation 'com.google.firebase:firebase-ml-vision:24.0.2'
implementation 'com.google.firebase:firebase-ml-vision-object-detection-model:19.0.4'
implementation 'com.google.firebase:firebase-ml-vision:24.1.0'
implementation 'com.google.firebase:firebase-ml-vision-object-detection-model:19.0.6'

api 'com.google.guava:guava:28.2-jre'
api 'com.google.guava:guava:31.1-jre'
}

apply plugin: 'com.google.gms.google-services'
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ buildscript {

}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
classpath 'com.google.gms:google-services:4.3.3' // google-services plugin
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72"
classpath 'com.android.tools.build:gradle:7.4.2'
classpath 'com.google.gms:google-services:4.3.15' // google-services plugin
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20"
}
}

Expand Down