commit a274139a76129a6f91a176fd63f3283fc9d1895c Author: Jucelio Coelho Date: Mon Sep 23 13:57:07 2024 -0300 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa724b7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +*.iml +.gradle +/local.properties +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures +.externalNativeBuild +.cxx +local.properties diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..04835f5 --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +FoodDeliveryMy Application \ No newline at end of file diff --git a/.idea/appInsightsSettings.xml b/.idea/appInsightsSettings.xml new file mode 100644 index 0000000..371f2e2 --- /dev/null +++ b/.idea/appInsightsSettings.xml @@ -0,0 +1,26 @@ + + + + + + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..b589d56 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..32522c1 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,18 @@ + + + + + + \ No newline at end of file diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml new file mode 100644 index 0000000..fdf8d99 --- /dev/null +++ b/.idea/kotlinc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/migrations.xml b/.idea/migrations.xml new file mode 100644 index 0000000..f8051a6 --- /dev/null +++ b/.idea/migrations.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..0ad17cb --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/app/build.gradle.kts b/app/build.gradle.kts new file mode 100644 index 0000000..3bff665 --- /dev/null +++ b/app/build.gradle.kts @@ -0,0 +1,69 @@ +plugins { + alias(libs.plugins.android.application) + alias(libs.plugins.kotlin.android) +} + +android { + namespace = "com.juceliodev.fooddeliverymyapplication" + compileSdk = 34 + + defaultConfig { + applicationId = "com.juceliodev.fooddeliverymyapplication" + minSdk = 21 + targetSdk = 34 + versionCode = 1 + versionName = "1.0" + + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + vectorDrawables { + useSupportLibrary = true + } + } + + buildTypes { + release { + isMinifyEnabled = false + proguardFiles( + getDefaultProguardFile("proguard-android-optimize.txt"), + "proguard-rules.pro" + ) + } + } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_1_8 + targetCompatibility = JavaVersion.VERSION_1_8 + } + kotlinOptions { + jvmTarget = "1.8" + } + buildFeatures { + compose = true + } + composeOptions { + kotlinCompilerExtensionVersion = "1.5.1" + } + packaging { + resources { + excludes += "/META-INF/{AL2.0,LGPL2.1}" + } + } +} + +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) +} \ No newline at end of file diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/app/src/androidTest/java/com/juceliodev/fooddeliverymyapplication/ExampleInstrumentedTest.kt b/app/src/androidTest/java/com/juceliodev/fooddeliverymyapplication/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..4bc9fbd --- /dev/null +++ b/app/src/androidTest/java/com/juceliodev/fooddeliverymyapplication/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package com.juceliodev.fooddeliverymyapplication + +import androidx.test.platform.app.InstrumentationRegistry +import androidx.test.ext.junit.runners.AndroidJUnit4 + +import org.junit.Test +import org.junit.runner.RunWith + +import org.junit.Assert.* + +/** + * Instrumented test, which will execute on an Android device. + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +@RunWith(AndroidJUnit4::class) +class ExampleInstrumentedTest { + @Test + fun useAppContext() { + // Context of the app under test. + val appContext = InstrumentationRegistry.getInstrumentation().targetContext + assertEquals("com.juceliodev.fooddeliverymyapplication", appContext.packageName) + } +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..e568685 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/java/com/juceliodev/fooddeliverymyapplication/MainActivity.kt b/app/src/main/java/com/juceliodev/fooddeliverymyapplication/MainActivity.kt new file mode 100644 index 0000000..df90fbd --- /dev/null +++ b/app/src/main/java/com/juceliodev/fooddeliverymyapplication/MainActivity.kt @@ -0,0 +1,47 @@ +package com.juceliodev.fooddeliverymyapplication + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.activity.enableEdgeToEdge +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.padding +import androidx.compose.material3.Scaffold +import androidx.compose.material3.Text +import androidx.compose.runtime.Composable +import androidx.compose.ui.Modifier +import androidx.compose.ui.tooling.preview.Preview +import com.juceliodev.fooddeliverymyapplication.ui.theme.FoodDeliveryMyApplicationTheme + +class MainActivity : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + enableEdgeToEdge() + setContent { + FoodDeliveryMyApplicationTheme { + Scaffold(modifier = Modifier.fillMaxSize()) { innerPadding -> + Greeting( + name = "Android", + modifier = Modifier.padding(innerPadding) + ) + } + } + } + } +} + +@Composable +fun Greeting(name: String, modifier: Modifier = Modifier) { + Text( + text = "Hello $name!", + modifier = modifier + ) +} + +@Preview(showBackground = true) +@Composable +fun GreetingPreview() { + FoodDeliveryMyApplicationTheme { + Greeting("Android") + } +} \ No newline at end of file diff --git a/app/src/main/java/com/juceliodev/fooddeliverymyapplication/ui/theme/Color.kt b/app/src/main/java/com/juceliodev/fooddeliverymyapplication/ui/theme/Color.kt new file mode 100644 index 0000000..e03675e --- /dev/null +++ b/app/src/main/java/com/juceliodev/fooddeliverymyapplication/ui/theme/Color.kt @@ -0,0 +1,59 @@ +package com.juceliodev.fooddeliverymyapplication.ui.theme + +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.staticCompositionLocalOf +import androidx.compose.ui.graphics.Color + +val Pink = Color(0xFFF28482) +val Green = Color(0xFF84A59D) +val Yellow = Color(0xFFF7EDE2) +val YellowLight = Color(0xFFFFFFF2) +val Dark = Color(0xFF3D405B) + +@Immutable +data class AppColors( + val background: Color, + val onBackground: Color, + val surface: Color, + val onSurface: Color, + val secondarySurface: Color, + val onSecondarySurface: Color, + val regularSurface: Color, + val onRegularSurface: Color, + val actionSurface: Color, + val onActionSurface: Color, + val highlightSurface: Color, + val onHighlightSurface: Color +) + +val LocalAppColors = staticCompositionLocalOf { + AppColors( + background = Color.Unspecified, + onBackground = Color.Unspecified, + surface = Color.Unspecified, + onSurface = Color.Unspecified, + secondarySurface = Color.Unspecified, + onSecondarySurface = Color.Unspecified, + regularSurface = Color.Unspecified, + onRegularSurface = Color.Unspecified, + actionSurface = Color.Unspecified, + onActionSurface = Color.Unspecified, + highlightSurface = Color.Unspecified, + onHighlightSurface = Color.Unspecified + ) +} + +val extendedColor = AppColors( + background = Color.White, + onBackground = Dark, + surface = Color.White, + onSurface = Dark, + secondarySurface = Pink, + onSecondarySurface = Color.White, + regularSurface = YellowLight, + onRegularSurface = Dark, + actionSurface = Yellow, + onActionSurface = Pink, + highlightSurface = Green, + onHighlightSurface = Color.White +) \ No newline at end of file diff --git a/app/src/main/java/com/juceliodev/fooddeliverymyapplication/ui/theme/Theme.kt b/app/src/main/java/com/juceliodev/fooddeliverymyapplication/ui/theme/Theme.kt new file mode 100644 index 0000000..06d9516 --- /dev/null +++ b/app/src/main/java/com/juceliodev/fooddeliverymyapplication/ui/theme/Theme.kt @@ -0,0 +1,28 @@ +package com.juceliodev.fooddeliverymyapplication.ui.theme + +import androidx.compose.material3.MaterialTheme +import androidx.compose.runtime.Composable +import androidx.compose.runtime.CompositionLocalProvider + +@Composable +fun AppTheme( + content: @Composable () -> Unit +) { + CompositionLocalProvider( + LocalAppColors provides extendedColor, + LocalAppTypography provides extendedTypography + ) { + MaterialTheme( + content = content + ) + } +} + +object AppTheme { + val colors: AppColors + @Composable + get() = LocalAppColors.current + val typography: AppTypography + @Composable + get() = LocalAppTypography.current +} \ 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/Type.kt new file mode 100644 index 0000000..2a1356e --- /dev/null +++ b/app/src/main/java/com/juceliodev/fooddeliverymyapplication/ui/theme/Type.kt @@ -0,0 +1,78 @@ +package com.juceliodev.fooddeliverymyapplication.ui.theme + +import androidx.compose.runtime.Immutable +import androidx.compose.runtime.staticCompositionLocalOf +import androidx.compose.ui.text.TextStyle +import androidx.compose.ui.text.font.Font +import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.text.font.FontStyle +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.unit.sp +import com.juceliodev.fooddeliverymyapplication.R + +private val UnboundedFontFamily = FontFamily( + Font(R.font.font_unbounded_bold, FontWeight.Bold, FontStyle.Normal), + Font(R.font.font_unbounded_regular, FontWeight.Normal, FontStyle.Normal), + Font(R.font.font_unbounded_light, FontWeight.Light, FontStyle.Normal) +) + +@Immutable +data class AppTypography( + val headline: TextStyle, + val titleLarge: TextStyle, + val titleMedium: TextStyle, + val titleSmall: TextStyle, + val body: TextStyle, + val bodySmall: TextStyle, + val label: TextStyle +) + +val LocalAppTypography = staticCompositionLocalOf { + AppTypography( + headline = TextStyle.Default, + titleLarge = TextStyle.Default, + titleMedium = TextStyle.Default, + titleSmall = TextStyle.Default, + body = TextStyle.Default, + bodySmall = TextStyle.Default, + label = TextStyle.Default + ) +} + +val extendedTypography = AppTypography( + headline = TextStyle( + fontFamily = UnboundedFontFamily, + fontSize = 32.sp, + fontWeight = FontWeight.Normal + ), + titleLarge = TextStyle( + fontFamily = UnboundedFontFamily, + fontSize = 24.sp, + fontWeight = FontWeight.Normal + ), + titleMedium = TextStyle( + fontFamily = UnboundedFontFamily, + fontSize = 20.sp, + fontWeight = FontWeight.Normal + ), + titleSmall = TextStyle( + fontFamily = UnboundedFontFamily, + fontSize = 16.sp, + fontWeight = FontWeight.Normal + ), + body = TextStyle( + fontFamily = UnboundedFontFamily, + fontSize = 14.sp, + fontWeight = FontWeight.Normal + ), + bodySmall = TextStyle( + fontFamily = UnboundedFontFamily, + fontSize = 12.sp, + fontWeight = FontWeight.Normal + ), + label = TextStyle( + fontFamily = UnboundedFontFamily, + fontSize = 11.sp, + fontWeight = FontWeight.Light + ) +) \ No newline at end of file diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_close.xml b/app/src/main/res/drawable/ic_close.xml new file mode 100644 index 0000000..cdfca3a --- /dev/null +++ b/app/src/main/res/drawable/ic_close.xml @@ -0,0 +1,13 @@ + + + diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/drawable/ic_launcher_foreground.xml b/app/src/main/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_minus.xml b/app/src/main/res/drawable/ic_minus.xml new file mode 100644 index 0000000..8b62ad7 --- /dev/null +++ b/app/src/main/res/drawable/ic_minus.xml @@ -0,0 +1,13 @@ + + + diff --git a/app/src/main/res/drawable/ic_plus.xml b/app/src/main/res/drawable/ic_plus.xml new file mode 100644 index 0000000..2606aa9 --- /dev/null +++ b/app/src/main/res/drawable/ic_plus.xml @@ -0,0 +1,13 @@ + + + diff --git a/app/src/main/res/drawable/img_bacon.png b/app/src/main/res/drawable/img_bacon.png new file mode 100644 index 0000000..6da54a5 Binary files /dev/null and b/app/src/main/res/drawable/img_bacon.png differ diff --git a/app/src/main/res/drawable/img_burger.png b/app/src/main/res/drawable/img_burger.png new file mode 100644 index 0000000..ef517c8 Binary files /dev/null and b/app/src/main/res/drawable/img_burger.png differ diff --git a/app/src/main/res/drawable/img_cheese.png b/app/src/main/res/drawable/img_cheese.png new file mode 100644 index 0000000..eebac50 Binary files /dev/null and b/app/src/main/res/drawable/img_cheese.png differ diff --git a/app/src/main/res/drawable/img_onion.png b/app/src/main/res/drawable/img_onion.png new file mode 100644 index 0000000..d995c34 Binary files /dev/null and b/app/src/main/res/drawable/img_onion.png differ diff --git a/app/src/main/res/font/font_unbounded_bold.ttf b/app/src/main/res/font/font_unbounded_bold.ttf new file mode 100644 index 0000000..dfa1009 Binary files /dev/null and b/app/src/main/res/font/font_unbounded_bold.ttf differ diff --git a/app/src/main/res/font/font_unbounded_light.ttf b/app/src/main/res/font/font_unbounded_light.ttf new file mode 100644 index 0000000..2fe11e3 Binary files /dev/null and b/app/src/main/res/font/font_unbounded_light.ttf differ diff --git a/app/src/main/res/font/font_unbounded_regular.ttf b/app/src/main/res/font/font_unbounded_regular.ttf new file mode 100644 index 0000000..e54e3df Binary files /dev/null and b/app/src/main/res/font/font_unbounded_regular.ttf differ diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi/ic_launcher.xml b/app/src/main/res/mipmap-anydpi/ic_launcher.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/app/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 0000000..c209e78 Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 0000000..b2dfe3d Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/app/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 0000000..4f0f1d6 Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 0000000..62b611d Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 0000000..948a307 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..1b9a695 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 0000000..28d4b77 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9287f50 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 0000000..aa7d642 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9126ae3 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..f8c6127 --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,10 @@ + + + #FFBB86FC + #FF6200EE + #FF3700B3 + #FF03DAC5 + #FF018786 + #FF000000 + #FFFFFFFF + \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..40164b7 --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + FoodDeliveryApp + \ No newline at end of file diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..c59b886 --- /dev/null +++ b/app/src/main/res/values/themes.xml @@ -0,0 +1,5 @@ + + + +