diff --git a/.idea/.name b/.idea/.name
index 04835f5..14ba59c 100644
--- a/.idea/.name
+++ b/.idea/.name
@@ -1 +1 @@
-FoodDeliveryMy Application
\ No newline at end of file
+fooddeliverymyapplication
\ No newline at end of file
diff --git a/.idea/deploymentTargetSelector.xml b/.idea/deploymentTargetSelector.xml
new file mode 100644
index 0000000..b268ef3
--- /dev/null
+++ b/.idea/deploymentTargetSelector.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
index 3bff665..642c461 100644
--- a/app/build.gradle.kts
+++ b/app/build.gradle.kts
@@ -1,6 +1,6 @@
plugins {
alias(libs.plugins.android.application)
- alias(libs.plugins.kotlin.android)
+ alias(libs.plugins.jetbrains.kotlin.android)
}
android {
@@ -9,12 +9,11 @@ android {
defaultConfig {
applicationId = "com.juceliodev.fooddeliverymyapplication"
- minSdk = 21
+ minSdk = 26
targetSdk = 34
versionCode = 1
versionName = "1.0"
- testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
useSupportLibrary = true
}
@@ -50,20 +49,10 @@ android {
}
dependencies {
-
- implementation(libs.androidx.core.ktx)
- implementation(libs.androidx.lifecycle.runtime.ktx)
- implementation(libs.androidx.activity.compose)
- implementation(platform(libs.androidx.compose.bom))
- implementation(libs.androidx.ui)
- implementation(libs.androidx.ui.graphics)
- implementation(libs.androidx.ui.tooling.preview)
- implementation(libs.androidx.material3)
- testImplementation(libs.junit)
- androidTestImplementation(libs.androidx.junit)
- androidTestImplementation(libs.androidx.espresso.core)
- androidTestImplementation(platform(libs.androidx.compose.bom))
- androidTestImplementation(libs.androidx.ui.test.junit4)
- debugImplementation(libs.androidx.ui.tooling)
- debugImplementation(libs.androidx.ui.test.manifest)
+ //AndroidX
+ implementation(libs.bundles.androidX)
+ //Compose
+ implementation(platform(libs.compose.bom))
+ debugImplementation(libs.compose.tooling)
+ implementation(libs.bundles.ui)
}
\ No newline at end of file
diff --git a/app/src/main/java/com/juceliodev/fooddeliverymyapplication/ui/theme/Type.kt b/app/src/main/java/com/juceliodev/fooddeliverymyapplication/ui/theme/Typography.kt
similarity index 100%
rename from app/src/main/java/com/juceliodev/fooddeliverymyapplication/ui/theme/Type.kt
rename to app/src/main/java/com/juceliodev/fooddeliverymyapplication/ui/theme/Typography.kt
diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml
index c59b886..604f772 100644
--- a/app/src/main/res/values/themes.xml
+++ b/app/src/main/res/values/themes.xml
@@ -1,5 +1,5 @@
-
+
\ No newline at end of file
diff --git a/build.gradle.kts b/build.gradle.kts
index 922f551..f74b04b 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -1,5 +1,5 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.android.application) apply false
- alias(libs.plugins.kotlin.android) apply false
+ alias(libs.plugins.jetbrains.kotlin.android) apply false
}
\ No newline at end of file
diff --git a/settings.gradle.kts b/settings.gradle.kts
index ba8957c..5f81786 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -19,5 +19,5 @@ dependencyResolutionManagement {
}
}
-rootProject.name = "FoodDeliveryMy Application"
+rootProject.name = "fooddeliverymyapplication"
include(":app")