feat(android): integrate web api & native AI chat button (#10239)

This commit is contained in:
Aki Chang
2025-02-18 16:23:25 +08:00
committed by GitHub
parent 892fd16f52
commit 3f4b7ec51e
15 changed files with 302 additions and 23 deletions

View File

@@ -1,13 +1,15 @@
[versions]
androidxEspressoCoreVersion = "3.6.1"
androidxJunitVersion = "1.2.1"
androidxEspressoCore = "3.6.1"
androidxJunit = "1.2.1"
browser = "1.8.0"
coreKtx = "1.15.0"
coreSplashScreenVersion = "1.0.1"
material = "1.12.0"
material3 = "1.3.1"
coreSplashScreen = "1.0.1"
jna = "5.16.0"
junitVersion = "4.13.2"
kotlin = "2.1.10"
kotlinxCoroutinesCore = "1.10.1"
kotlinxCoroutines = "1.10.1"
rustAndroid = "0.9.6"
appcompat = "1.7.0"
coordinatorLayout = "1.2.0"
@@ -20,12 +22,15 @@ androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "a
androidx-browser = { module = "androidx.browser:browser", version.ref = "browser" }
androidx-coordinatorlayout = { module = "androidx.coordinatorlayout:coordinatorlayout", version.ref = "coordinatorLayout" }
androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "coreKtx" }
androidx-core-splashscreen = { module = "androidx.core:core-splashscreen", version.ref = "coreSplashScreenVersion" }
androidx-espresso-core = { module = "androidx.test.espresso:espresso-core", version.ref = "androidxEspressoCoreVersion" }
androidx-junit = { module = "androidx.test.ext:junit", version.ref = "androidxJunitVersion" }
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinxCoroutinesCore" }
androidx-core-splashscreen = { module = "androidx.core:core-splashscreen", version.ref = "coreSplashScreen" }
androidx-espresso-core = { module = "androidx.test.espresso:espresso-core", version.ref = "androidxEspressoCore" }
androidx-junit = { module = "androidx.test.ext:junit", version.ref = "androidxJunit" }
androidx-material3 = { module = "androidx.compose.material3:material3", version.ref = "material3" }
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinxCoroutines" }
kotlinx-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "kotlinxCoroutines"}
google-services = { module = "com.google.gms:google-services", version.ref = "googleServices" }
google-material = { module = "com.google.android.material:material", version.ref = "material" }
android-gradlePlugin = { module = "com.android.tools.build:gradle", version.ref = "androidGradlePlugin" }
jna = { module = "net.java.dev.jna:jna", version.ref = "jna" }
junit = { module = "junit:junit", version.ref = "junitVersion" }