mirror of
https://github.com/google-ai-edge/gallery.git
synced 2025-07-18 12:16:47 -04:00
Initial checkin
This commit is contained in:
parent
9f4376e65c
commit
ea31fd0544
152 changed files with 14171 additions and 1 deletions
73
Android/src/gradle/libs.versions.toml
Normal file
73
Android/src/gradle/libs.versions.toml
Normal file
|
@ -0,0 +1,73 @@
|
|||
[versions]
|
||||
agp = "8.8.2"
|
||||
kotlin = "2.1.0"
|
||||
coreKtx = "1.15.0"
|
||||
junit = "4.13.2"
|
||||
junitVersion = "1.2.1"
|
||||
espressoCore = "3.6.1"
|
||||
lifecycleRuntimeKtx = "2.8.7"
|
||||
activityCompose = "1.10.1"
|
||||
composeBom = "2025.03.01"
|
||||
navigation = "2.8.9"
|
||||
serializationPlugin = "2.0.21"
|
||||
serializationJson = "1.7.3"
|
||||
materialIconExtended = "1.7.8"
|
||||
workRuntime = "2.10.0"
|
||||
dataStore = "1.1.4"
|
||||
gson = "2.12.1"
|
||||
lifecycleProcess = "2.8.7"
|
||||
#noinspection GradleDependency
|
||||
mediapipeTasksText = "0.10.21"
|
||||
mediapipeTasksGenai = "0.10.22"
|
||||
mediapipeTasksImageGenerator = "0.10.21"
|
||||
commonmark = "1.0.0-alpha02"
|
||||
richtext = "1.0.0-alpha02"
|
||||
playServicesTfliteJava = "16.4.0"
|
||||
playServicesTfliteGpu= "16.4.0"
|
||||
cameraX = "1.4.2"
|
||||
netOpenidAppauth = "0.11.1"
|
||||
splashscreen = "1.2.0-beta01"
|
||||
|
||||
[libraries]
|
||||
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
||||
junit = { group = "junit", name = "junit", version.ref = "junit" }
|
||||
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
|
||||
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
|
||||
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" }
|
||||
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
|
||||
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
|
||||
androidx-ui = { group = "androidx.compose.ui", name = "ui" }
|
||||
androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
|
||||
androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
|
||||
androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
|
||||
androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
|
||||
androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
|
||||
androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
|
||||
androidx-compose-navigation = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigation" }
|
||||
kotlinx-serialization-json = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version.ref = "serializationJson" }
|
||||
material-icon-extended = { group = "androidx.compose.material", name = "material-icons-extended", version.ref = "materialIconExtended" }
|
||||
androidx-work-runtime = { group = "androidx.work", name = "work-runtime-ktx", version.ref = "workRuntime" }
|
||||
androidx-datastore-preferences = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "dataStore" }
|
||||
com-google-code-gson = { group = "com.google.code.gson", name = "gson", version.ref = "gson" }
|
||||
androidx-lifecycle-process = { group = "androidx.lifecycle", name = "lifecycle-process", version.ref = "lifecycleProcess" }
|
||||
mediapipe-tasks-text = { group = "com.google.mediapipe", name = "tasks-text", version.ref = "mediapipeTasksText" }
|
||||
mediapipe-tasks-genai = { group = "com.google.mediapipe", name = "tasks-genai", version.ref = "mediapipeTasksGenai" }
|
||||
mediapipe-tasks-imagegen = { group = "com.google.mediapipe", name = "tasks-vision-image-generator", version.ref = "mediapipeTasksImageGenerator" }
|
||||
commonmark = { group = "com.halilibo.compose-richtext", name = "richtext-commonmark", version.ref = "commonmark" }
|
||||
richtext = { group = "com.halilibo.compose-richtext", name = "richtext-ui-material3", version.ref = "richtext" }
|
||||
tflite = { group = "com.google.android.gms", name = "play-services-tflite-java", version.ref = "playServicesTfliteJava" }
|
||||
tflite-gpu = { group = "com.google.android.gms", name = "play-services-tflite-gpu", version.ref = "playServicesTfliteGpu" }
|
||||
tflite-support = { group = "com.google.android.gms", name = "play-services-tflite-support", version.ref = "playServicesTfliteJava" }
|
||||
camerax-core = { group = "androidx.camera", name = "camera-core", version.ref = "cameraX"}
|
||||
camerax-camera2 = { group = "androidx.camera", name = "camera-camera2", version.ref = "cameraX"}
|
||||
camerax-lifecycle = { group = "androidx.camera", name = "camera-lifecycle", version.ref = "cameraX"}
|
||||
camerax-view = { group = "androidx.camera", name = "camera-view", version.ref = "cameraX"}
|
||||
openid-appauth = { group = "net.openid", name = "appauth", version.ref = "netOpenidAppauth" }
|
||||
androidx-splashscreen = { group = "androidx.core", name = "core-splashscreen", version.ref = "splashscreen" }
|
||||
|
||||
[plugins]
|
||||
android-application = { id = "com.android.application", version.ref = "agp" }
|
||||
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
||||
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
|
||||
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "serializationPlugin" }
|
||||
|
BIN
Android/src/gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
BIN
Android/src/gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
Binary file not shown.
6
Android/src/gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
6
Android/src/gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
#Sun Mar 02 09:29:13 PST 2025
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
Loading…
Add table
Add a link
Reference in a new issue