feat: integrate plant disease detection, growth recipe, and commodity price prediction features
This commit is contained in:
parent
17e2762f3b
commit
6b5010d37d
|
|
@ -1,31 +1,59 @@
|
|||
[versions]
|
||||
accompanistSwiperefresh = "0.32.0"
|
||||
agp = "8.8.2"
|
||||
cameraCore = "1.4.2"
|
||||
converterGson = "2.9.0"
|
||||
datastorePreferences = "1.1.7"
|
||||
featureDelivery = "2.1.0"
|
||||
firebaseBom = "33.13.0"
|
||||
hiltAndroid = "2.56.2"
|
||||
hiltAndroidCompiler = "2.56.2"
|
||||
hiltNavigationCompose = "1.2.0"
|
||||
javaJwt = "4.4.0"
|
||||
koinAndroid = "3.5.3"
|
||||
koinAndroidxCompose = "3.5.3"
|
||||
kotlin = "2.0.21"
|
||||
coreKtx = "1.16.0"
|
||||
junit = "4.13.2"
|
||||
junitVersion = "1.2.1"
|
||||
espressoCore = "3.6.1"
|
||||
kotlinxSerializationJson = "1.6.3"
|
||||
kotlinxSerializationJsonVersion = "1.6.0"
|
||||
ktorClientCio = "2.3.3"
|
||||
ktorClientContentNegotiation = "2.3.3"
|
||||
ktorClientCore = "2.3.3"
|
||||
ktorSerializationKotlinxJson = "2.3.3"
|
||||
lifecycleRuntimeKtx = "2.9.0"
|
||||
activityCompose = "1.10.1"
|
||||
composeBom = "2025.05.00"
|
||||
lifecycleViewmodelCompose = "2.9.0"
|
||||
loggingInterceptor = "4.11.0"
|
||||
navigationCompose = "2.9.0"
|
||||
okhttp = "4.12.0"
|
||||
retrofit = "2.9.0"
|
||||
retrofit2KotlinxSerializationConverter = "0.8.0"
|
||||
runtime = "1.8.2"
|
||||
runtimeAndroid = "1.8.1"
|
||||
ycharts = "2.1.0"
|
||||
|
||||
[libraries]
|
||||
accompanist-swiperefresh = { module = "com.google.accompanist:accompanist-swiperefresh", version.ref = "accompanistSwiperefresh" }
|
||||
androidx-camera-camera2 = { module = "androidx.camera:camera-camera2", version.ref = "cameraCore" }
|
||||
androidx-camera-core = { module = "androidx.camera:camera-core", version.ref = "cameraCore" }
|
||||
androidx-camera-lifecycle = { module = "androidx.camera:camera-lifecycle", version.ref = "cameraCore" }
|
||||
androidx-camera-view = { module = "androidx.camera:camera-view", version.ref = "cameraCore" }
|
||||
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
||||
androidx-datastore-preferences = { module = "androidx.datastore:datastore-preferences", version.ref = "datastorePreferences" }
|
||||
androidx-hilt-navigation-compose = { module = "androidx.hilt:hilt-navigation-compose", version.ref = "hiltNavigationCompose" }
|
||||
androidx-lifecycle-viewmodel-compose = { module = "androidx.lifecycle:lifecycle-viewmodel-compose", version.ref = "lifecycleViewmodelCompose" }
|
||||
androidx-navigation-compose = { module = "androidx.navigation:navigation-compose", version.ref = "navigationCompose" }
|
||||
androidx-runtime = { module = "androidx.compose.runtime:runtime", version.ref = "runtime" }
|
||||
converter-gson = { module = "com.squareup.retrofit2:converter-gson", version.ref = "converterGson" }
|
||||
feature-delivery = { module = "com.google.android.play:feature-delivery", version.ref = "featureDelivery" }
|
||||
feature-delivery-ktx = { module = "com.google.android.play:feature-delivery-ktx", version.ref = "featureDelivery" }
|
||||
firebase-bom = { module = "com.google.firebase:firebase-bom", version.ref = "firebaseBom" }
|
||||
firebase-database = { module = "com.google.firebase:firebase-database" }
|
||||
hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "hiltAndroid" }
|
||||
hilt-android-compiler = { module = "com.google.dagger:hilt-android-compiler", version.ref = "hiltAndroidCompiler" }
|
||||
java-jwt = { module = "com.auth0:java-jwt", version.ref = "javaJwt" }
|
||||
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" }
|
||||
|
|
@ -40,10 +68,26 @@ androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-man
|
|||
androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
|
||||
androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
|
||||
androidx-runtime-android = { group = "androidx.compose.runtime", name = "runtime-android", version.ref = "runtimeAndroid" }
|
||||
koin-android = { module = "io.insert-koin:koin-android", version.ref = "koinAndroid" }
|
||||
koin-androidx-compose = { module = "io.insert-koin:koin-androidx-compose", version.ref = "koinAndroidxCompose" }
|
||||
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinxSerializationJson" }
|
||||
kotlinx-serialization-json-v160 = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinxSerializationJsonVersion" }
|
||||
ktor-client-cio = { module = "io.ktor:ktor-client-cio", version.ref = "ktorClientCio" }
|
||||
ktor-client-content-negotiation = { module = "io.ktor:ktor-client-content-negotiation", version.ref = "ktorClientContentNegotiation" }
|
||||
ktor-client-core = { module = "io.ktor:ktor-client-core", version.ref = "ktorClientCore" }
|
||||
ktor-serialization-kotlinx-json = { module = "io.ktor:ktor-serialization-kotlinx-json", version.ref = "ktorSerializationKotlinxJson" }
|
||||
logging-interceptor = { module = "com.squareup.okhttp3:logging-interceptor", version.ref = "loggingInterceptor" }
|
||||
okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" }
|
||||
retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit" }
|
||||
retrofit2-kotlinx-serialization-converter = { module = "com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter", version.ref = "retrofit2KotlinxSerializationConverter" }
|
||||
ycharts = { module = "co.yml:ycharts", version.ref = "ycharts" }
|
||||
|
||||
[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" }
|
||||
android-dynamic-feature = { id = "com.android.dynamic-feature", version.ref = "agp" }
|
||||
google-services = { id = "com.google.gms.google-services", version = "4.4.2" }
|
||||
ksp = { id = "com.google.devtools.ksp", version = "2.0.21-1.0.27" }
|
||||
hilt-android = { id = "com.google.dagger.hilt.android", version = "2.56.2" }
|
||||
|
||||
|
|
|
|||
|
|
@ -22,4 +22,6 @@ dependencyResolutionManagement {
|
|||
rootProject.name = "Agrilink Vocpro"
|
||||
include(":app")
|
||||
include(":control_feature")
|
||||
include(":diseasedetection_feature")
|
||||
include(":plant_disease_detection_feature")
|
||||
include(":growth_recipe_feature")
|
||||
include(":commodity_price_prediction_feature")
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user