Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions Domains/FullStack/TastyGuide/.gitignore
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions Domains/FullStack/TastyGuide/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Domains/FullStack/TastyGuide/.idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Domains/FullStack/TastyGuide/.idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions Domains/FullStack/TastyGuide/.idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Domains/FullStack/TastyGuide/.idea/migrations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Domains/FullStack/TastyGuide/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions Domains/FullStack/TastyGuide/.idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 43 additions & 0 deletions Domains/FullStack/TastyGuide/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Contributor- siddhi-wadekar
# TastyGuide – Android App

TastyGuide is a simple Android application designed to help users explore four different cuisines: Indian, Italian, Chinese, and Mexican. Built as a microproject, this app offers users a smooth experience to browse recipe options with intuitive navigation.

## Features

- Clean and minimal user interface
- Four clickable cuisine cards
- Recipe details displayed upon selection
- Lightweight and fast performance

## Tech Stack

- Language: Java
- UI: XML
- IDE: Android Studio
- Platform: Android SDK

## Getting Started

To run this project locally:

1. Clone the Repository
```bash
git clone https://github.com/your-username/TastyGuide.git

## UI Design
You can view the UI design prototype here:
https://www.figma.com/design/XCMhr1sJoJ99ESWbXE7GtA/TastyGuide?m=auto&t=dIF1Eyl3KOrRnXSY-1

## Snapshots
![image](https://github.com/user-attachments/assets/996c94b6-e0af-48a2-88b5-746f5abd4181)
![image](https://github.com/user-attachments/assets/1bb8717b-5f8a-401a-971f-f1f97a32a2c1)
![image](https://github.com/user-attachments/assets/2a0ebefd-0acb-4ddf-b501-2ecb9d5730a8)
![image](https://github.com/user-attachments/assets/973aae68-696d-410a-b9af-06ac1a187dda)
![image](https://github.com/user-attachments/assets/0d04d458-cc18-43ca-a7cc-8501c9fb8206)






1 change: 1 addition & 0 deletions Domains/FullStack/TastyGuide/app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
43 changes: 43 additions & 0 deletions Domains/FullStack/TastyGuide/app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
plugins {
alias(libs.plugins.android.application)
}

android {
namespace = "com.example.tastyguide"
compileSdk = 35

defaultConfig {
applicationId = "com.example.tastyguide"
minSdk = 24
targetSdk = 34
versionCode = 1
versionName = "1.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
}

dependencies {

implementation(libs.appcompat)
implementation(libs.material)
implementation(libs.activity)
implementation(libs.constraintlayout)
testImplementation(libs.junit)
androidTestImplementation(libs.ext.junit)
androidTestImplementation(libs.espresso.core)
}
21 changes: 21 additions & 0 deletions Domains/FullStack/TastyGuide/app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package com.example.tastyguide;

import android.content.Context;

import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.ext.junit.runners.AndroidJUnit4;

import org.junit.Test;
import org.junit.runner.RunWith;

import static org.junit.Assert.*;

/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("com.example.tastyguide", appContext.getPackageName());
}
}
38 changes: 38 additions & 0 deletions Domains/FullStack/TastyGuide/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.TastyGuide"
tools:targetApi="31">
<activity
android:name=".DessertActivity"
android:exported="false" />
<activity
android:name=".IndianActivity"
android:exported="false" />
<activity
android:name=".ChineseActivity"
android:exported="false" />
<activity
android:name=".ItalianActivity"
android:exported="false" />
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
package com.example.tastyguide;

import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageButton;

import androidx.activity.EdgeToEdge;
import androidx.appcompat.app.AppCompatActivity;

public class ChineseActivity extends AppCompatActivity {
ImageButton btn;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
EdgeToEdge.enable(this);
setContentView(R.layout.activity_chinese);

btn = findViewById(R.id.homeButton);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Create the Intent for MainActivity
Intent intent = new Intent(ChineseActivity.this, MainActivity.class);
startActivity(intent);
finish();
}
});
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
package com.example.tastyguide;

import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageButton;

import androidx.activity.EdgeToEdge;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.graphics.Insets;
import androidx.core.view.ViewCompat;
import androidx.core.view.WindowInsetsCompat;

public class DessertActivity extends AppCompatActivity {
ImageButton btn;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
EdgeToEdge.enable(this);
setContentView(R.layout.activity_dessert);
btn = findViewById(R.id.homeButton);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Create the Intent for MainActivity
Intent intent = new Intent(DessertActivity.this, MainActivity.class);
startActivity(intent);
finish();
}
});
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
package com.example.tastyguide;

import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageButton;

import androidx.activity.EdgeToEdge;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.graphics.Insets;
import androidx.core.view.ViewCompat;
import androidx.core.view.WindowInsetsCompat;

public class IndianActivity extends AppCompatActivity {
ImageButton btn;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
EdgeToEdge.enable(this);
setContentView(R.layout.activity_indian);

btn = findViewById(R.id.homeButton);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Create the Intent for MainActivity
Intent intent = new Intent(IndianActivity.this, MainActivity.class);
startActivity(intent);
finish();
}
});
}
}
Loading
Loading