Files

94 lines
2.8 KiB
Kotlin
Raw Permalink Normal View History

2024-03-24 17:49:47 -06:00
plugins {
alias(libs.plugins.androidApplication)
// id("com.google.gms.google-services")
2024-03-24 17:49:47 -06:00
}
2024-03-29 17:37:05 -06:00
//allprojects {
// repositories {
// maven ( url = "https://jitpack.io" )
// }
//}
2024-03-24 17:49:47 -06:00
android {
2024-09-15 22:47:45 -06:00
namespace = "com.ridgebotics.ridgescout"
2024-03-24 17:49:47 -06:00
compileSdk = 34
2024-09-28 12:43:19 -06:00
dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk = false
// Disables dependency metadata when building Android App Bundles.
includeInBundle = false
}
2024-03-24 17:49:47 -06:00
defaultConfig {
2024-09-15 22:47:45 -06:00
applicationId = "com.ridgebotics.ridgescout"
2024-03-24 17:49:47 -06:00
minSdk = 24
targetSdk = 34
2025-03-15 06:09:47 -06:00
versionCode = 11 // **IMPORTANT** Increment this before releasing on github
versionName = "1.4"// **IMPORTANT** Change this before releasing on github (<Year num since 2024>.<Update Version>)
2024-03-24 17:49:47 -06:00
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
isMinifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
buildFeatures {
viewBinding = true
}
2025-09-05 10:55:45 -06:00
androidResources {
noCompress += listOf("tflite")
}
2024-03-24 17:49:47 -06:00
}
dependencies {
implementation(libs.appcompat)
implementation(libs.material)
2025-02-16 23:31:27 -07:00
implementation(libs.material3)
2024-03-24 17:49:47 -06:00
implementation(libs.constraintlayout)
implementation(libs.lifecycle.livedata.ktx)
implementation(libs.lifecycle.viewmodel.ktx)
implementation("androidx.navigation:navigation-fragment:2.8.9")
2024-03-24 17:49:47 -06:00
implementation(libs.navigation.ui)
2024-10-05 18:47:36 -06:00
implementation(libs.preference)
2024-03-29 17:37:05 -06:00
// implementation(libs.support.annotations)
2024-03-24 17:49:47 -06:00
testImplementation(libs.junit)
androidTestImplementation(libs.ext.junit)
androidTestImplementation(libs.espresso.core)
2024-03-29 17:37:05 -06:00
2024-04-06 18:52:25 -06:00
2025-07-27 16:28:10 -06:00
var camerax_version = "1.4.2"
implementation("androidx.camera:camera-core:${camerax_version}")
implementation("androidx.camera:camera-camera2:${camerax_version}")
implementation("androidx.camera:camera-lifecycle:${camerax_version}")
2024-04-06 18:52:25 -06:00
implementation("androidx.camera:camera-view:${camerax_version}")
implementation("com.journeyapps:zxing-android-embedded:4.3.0")
2024-05-04 13:56:00 -06:00
implementation("com.github.PhilJay:MPAndroidChart:v3.1.0")
2024-07-23 22:38:37 -06:00
// implementation("com.google.firebase:firebase-ml-modeldownloader:24.1.2")
// implementation(platform("com.google.firebase:firebase-bom:33.1.2"))
implementation("org.tensorflow:tensorflow-lite-task-text:0.3.0")
2024-09-18 19:44:30 -06:00
implementation("com.squareup.okhttp3:okhttp:4.9.0")
2024-10-05 18:47:36 -06:00
implementation("commons-net:commons-net:3.10.0")
2024-09-18 08:49:26 -06:00
2024-07-23 22:38:37 -06:00
// implementation("com.github.DeveloperPaul123:SimpleBluetoothLibrary:1.5.1")
}