diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..aa724b77
--- /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 00000000..26d33521
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml
diff --git a/.idea/compiler.xml b/.idea/compiler.xml
new file mode 100644
index 00000000..b589d56e
--- /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 00000000..a2d7c213
--- /dev/null
+++ b/.idea/gradle.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 00000000..44ca2d9b
--- /dev/null
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml
new file mode 100644
index 00000000..e1eea1d6
--- /dev/null
+++ b/.idea/kotlinc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 00000000..773fe0fb
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 00000000..94a25f7f
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/README.md b/README.md
index 9d3f4a24..ff81bd9f 100644
--- a/README.md
+++ b/README.md
@@ -9,18 +9,18 @@
## README.md must consist of the following information:
-#### Team Name -
-#### Problem Statement -
-#### Team Leader Email -
+#### Team Name - Tobena
+#### Problem Statement - Personalized Entertainement for Kids
+#### Team Leader Email - gandharv.bakshi@gmail.com
## A Brief of the Prototype:
- This section must include UML Diagrams and prototype description
-
+An Android app that takes in a child's interests - basis the interests, the app then creates stories (with images and accompanying audio) that the child can enjoy!
+
## Tech Stack:
- List Down all technologies used to Build the prototype
-
+Kotlin for Front end, Python for back end. GPT-3.5-turbo for story generation, Google TTS / ElevenLabs for Voice generation, and Stable Diffusion XL 1.0 for Image generation
+
## Step-by-Step Code Execution Instructions:
- This Section must contain a set of instructions required to clone and run the prototype so that it can be tested and deeply analyzed
+ Open in Android Studio and make the app!
## What I Learned:
- Write about the biggest learning you had while developing the prototype
+ Write about the biggest learning you had while developing the prototype: How to train Stable Diffusion XL on personal images to generate consistent images!
diff --git a/app/.gitignore b/app/.gitignore
new file mode 100644
index 00000000..42afabfd
--- /dev/null
+++ b/app/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644
index 00000000..0927da3a
--- /dev/null
+++ b/app/build.gradle
@@ -0,0 +1,73 @@
+plugins {
+ id 'com.android.application'
+ id 'org.jetbrains.kotlin.android'
+ id 'com.google.relay' version '0.3.06'
+
+}
+
+android {
+ namespace 'com.example.buildathonstoryv0'
+ compileSdk 33
+
+ defaultConfig {
+ applicationId "com.example.buildathonstoryv0"
+ minSdk 28
+ targetSdk 33
+ versionCode 1
+ versionName "1.0"
+
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
+ vectorDrawables {
+ useSupportLibrary true
+ }
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled 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.3.2'
+ }
+ packagingOptions {
+ resources {
+ excludes += '/META-INF/{AL2.0,LGPL2.1}'
+ }
+ }
+}
+
+dependencies {
+
+ implementation 'androidx.core:core-ktx:1.8.0'
+ implementation platform('org.jetbrains.kotlin:kotlin-bom:1.8.0')
+ implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1'
+ implementation 'androidx.activity:activity-compose:1.5.1'
+ implementation platform('androidx.compose:compose-bom:2022.10.00')
+ implementation 'androidx.compose.ui:ui'
+ implementation 'androidx.compose.ui:ui-graphics'
+ implementation 'androidx.compose.ui:ui-tooling-preview'
+ implementation 'androidx.compose.material3:material3'
+ implementation 'com.android.volley:volley:1.2.1'
+
+ implementation 'com.squareup.okhttp3:okhttp:4.9.1'
+
+ testImplementation 'junit:junit:4.13.2'
+ androidTestImplementation 'androidx.test.ext:junit:1.1.5'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
+ androidTestImplementation platform('androidx.compose:compose-bom:2022.10.00')
+ androidTestImplementation 'androidx.compose.ui:ui-test-junit4'
+ debugImplementation 'androidx.compose.ui:ui-tooling'
+ debugImplementation 'androidx.compose.ui: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 00000000..481bb434
--- /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/example/buildathonstoryv0/ExampleInstrumentedTest.kt b/app/src/androidTest/java/com/example/buildathonstoryv0/ExampleInstrumentedTest.kt
new file mode 100644
index 00000000..0f800277
--- /dev/null
+++ b/app/src/androidTest/java/com/example/buildathonstoryv0/ExampleInstrumentedTest.kt
@@ -0,0 +1,24 @@
+package com.example.buildathonstoryv0
+
+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.example.buildathonstoryv0", 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 00000000..8a9d751a
--- /dev/null
+++ b/app/src/main/AndroidManifest.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/java/com/example/buildathonstoryv0/MainActivity.kt b/app/src/main/java/com/example/buildathonstoryv0/MainActivity.kt
new file mode 100644
index 00000000..70a73a34
--- /dev/null
+++ b/app/src/main/java/com/example/buildathonstoryv0/MainActivity.kt
@@ -0,0 +1,228 @@
+package com.example.buildathonstoryv0
+
+import android.graphics.BitmapFactory
+import android.os.Bundle
+import android.speech.tts.TextToSpeech
+import android.text.SpannableStringBuilder
+import android.text.Spanned
+import android.text.style.ImageSpan
+import android.util.Base64
+import android.util.Log
+import android.widget.Button
+import android.widget.CheckBox
+import android.widget.EditText
+import android.widget.ImageButton
+import android.widget.TextView
+import android.widget.ToggleButton
+import androidx.activity.ComponentActivity
+import androidx.activity.compose.setContent
+import androidx.compose.foundation.layout.fillMaxSize
+import androidx.compose.material3.MaterialTheme
+import androidx.compose.material3.Surface
+import androidx.compose.material3.Text
+import androidx.compose.runtime.Composable
+import androidx.compose.ui.Modifier
+import androidx.compose.ui.tooling.preview.Preview
+import com.android.volley.Request
+import com.android.volley.Response
+import com.android.volley.RetryPolicy
+import com.android.volley.VolleyError
+import com.android.volley.toolbox.StringRequest
+import com.android.volley.toolbox.Volley
+import com.example.buildathonstoryv0.ui.theme.BuildathonStoryV0Theme
+import okhttp3.HttpUrl
+import org.json.JSONObject
+import java.util.Locale
+
+class MainActivity : ComponentActivity() {
+ private lateinit var pawpatrolbutton: ToggleButton
+ private lateinit var carbutton: ToggleButton
+ private lateinit var pikachubutton: ToggleButton
+ private lateinit var lionbutton: ToggleButton
+ private lateinit var peppapigbutton: ToggleButton
+ private lateinit var sciencebutton: ToggleButton
+ private lateinit var otherInterestsEditText: EditText
+ private lateinit var childNameEditText: EditText
+ private lateinit var submitButton: Button
+ private lateinit var addImagesCheckBox: CheckBox
+ private lateinit var resultTextView: TextView
+ private lateinit var playAudioButton: ImageButton
+ lateinit var tts: TextToSpeech
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_main)
+
+ pawpatrolbutton = findViewById(R.id.pawpatrolbutton)
+ carbutton = findViewById(R.id.carbutton)
+ pikachubutton = findViewById(R.id.pikachubutton)
+ lionbutton = findViewById(R.id.lionbutton)
+ peppapigbutton = findViewById(R.id.peppapigbutton)
+ sciencebutton = findViewById(R.id.sciencebutton)
+ otherInterestsEditText = findViewById(R.id.other_interests_edittext)
+ childNameEditText = findViewById(R.id.child_name_edittext)
+ submitButton = findViewById(R.id.submit_button)
+ addImagesCheckBox = findViewById(R.id.add_images_checkbox)
+ playAudioButton = findViewById(R.id.play_audio)
+ resultTextView = findViewById(R.id.resultTv)
+
+ tts = TextToSpeech(applicationContext, TextToSpeech.OnInitListener {
+ if(it == TextToSpeech.SUCCESS){
+ Log.d("TTS: ", "Initialization successful")
+ tts.language = Locale("en", "IN")
+ }
+ else{
+ Log.e("TTS", "Initialization failed with error code: $it")
+ }
+ })
+
+ submitButton.setOnClickListener {
+ val otherInterests = otherInterestsEditText.text.toString()
+ val childName = childNameEditText.text.toString()
+ performAction(childName, otherInterests)
+ }
+
+ playAudioButton.setOnClickListener {
+ val storyText = resultTextView.text.toString()
+ if (tts.isSpeaking) {
+ // Stop the TTS engine if it is currently speaking
+ tts.stop()
+ } else if (storyText.isNotEmpty()) {
+ Log.d("TTS: ", "storyText is NOT empty")
+ tts.speak(storyText, TextToSpeech.QUEUE_FLUSH, null, null)
+ Log.d("TTS", "TTS has started")
+ Log.d("Contents of StoryText", "storyText: $storyText")
+ } else {
+ Log.d("TTS", "storyText is empty")
+ tts.speak("There is no story generated yet. Please generate a story first", TextToSpeech.QUEUE_FLUSH, null, null)
+ }
+ }
+ }
+
+ private fun performAction(nameInput: String, otherInterests: String) {
+ resultTextView.text = "Generating Story..."
+
+ val selectedButtons = mutableListOf()
+ if (pawpatrolbutton.isChecked) {
+ selectedButtons.add("Paw Patrol")
+ }
+ if (carbutton.isChecked) {
+ selectedButtons.add("Cars")
+ }
+ if (pikachubutton.isChecked) {
+ selectedButtons.add("Pikachu")
+ }
+ if (lionbutton.isChecked) {
+ selectedButtons.add("Lion")
+ }
+ if (peppapigbutton.isChecked) {
+ selectedButtons.add("Peppa Pig")
+ }
+ if (sciencebutton.isChecked) {
+ selectedButtons.add("Science")
+ }
+
+ val selectedButtonsString = selectedButtons.joinToString(separator = ", ")
+
+ // Instantiate the RequestQueue.
+ val queue = Volley.newRequestQueue(this)
+ val url = "https://593f-34-87-63-234.ngrok.io"
+ //Log.d("input", input)
+ val jsonObject = JSONObject()
+ var prompt:String
+ if (nameInput.isEmpty())
+ {
+ if (selectedButtons.isEmpty()) {
+ prompt = "Make a story appropriate to a 3 year old. The story should also involve $otherInterests.The story should have many dialogs and an implicit moral. The story should be engaging for a 3 year old child. The story should approximately have 500 words"
+ } else {
+ prompt = "Make a story appropriate to a 3 year old. The story should also involve $otherInterests and $selectedButtonsString.The story should have many dialogs and an implicit moral. The story should be engaging for a 3 year old child. The story should approximately have 500 words"
+ }
+ }
+ else
+ {
+ if (selectedButtons.isEmpty()) {
+ prompt = "Make a story appropriate to a 3 year old. The story should star a 3 year old named $nameInput and also involve $otherInterests.The story should have many dialogs and an implicit moral. The story should be engaging for a 3 year old child. The story should approximately have 500 words"
+ } else {
+ prompt = "Make a story appropriate to a 3 year old. The story should star a 3 year old named $nameInput and also involve $otherInterests and $selectedButtonsString.The story should have many dialogs and an implicit moral. The story should be engaging for a 3 year old child. The story should approximately have 500 words"
+ }
+
+ }
+ val addImagesIsChecked = if (addImagesCheckBox.isChecked) "true" else "false"
+
+ val requestUrl = HttpUrl.Builder()
+ .scheme("https")
+ .host("593f-34-87-63-234.ngrok.io")
+ .addQueryParameter("prompt", prompt)
+ .addQueryParameter("isPictureStory", addImagesIsChecked.toString())
+ .build()
+
+
+// Request a string response from the provided URL.
+ val stringRequest = StringRequest(
+ Request.Method.GET, requestUrl.toString(),
+ Response.Listener { response ->
+ val jsonResponse = JSONObject(response)
+ val stories = jsonResponse.getJSONArray("stories")
+ val images = jsonResponse.getJSONArray("images")
+
+ // Log the size of the stories and images arrays
+ Log.d("MyApp", "Stories array size: ${stories.length()}")
+ Log.d("MyApp", "Images array size: ${images.length()}")
+
+ // Create a SpannableStringBuilder to hold the final text with images
+ val builder = SpannableStringBuilder()
+
+ // Check if the images array is not empty
+ if (images.length() > 0) {
+ // Iterate over the stories and images arrays
+ for (i in 0 until stories.length()) {
+ // Append the current story to the builder
+ builder.append(stories.getString(i))
+
+ // Decode the current image from base64 and create a Bitmap
+ val imageBytes = Base64.decode(images.getString(i), Base64.DEFAULT)
+ val bitmap = BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.size)
+
+ // Create an ImageSpan from the Bitmap
+ val imageSpan = ImageSpan(this, bitmap)
+
+ // Append a space character to the builder and set its span to the ImageSpan
+ builder.append(" ")
+ builder.setSpan(imageSpan, builder.length - 1, builder.length, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE)
+ }
+ } else {
+ // The images array is empty, so just append all of the stories to the builder
+ for (i in 0 until stories.length()) {
+ builder.append(stories.getString(i))
+ }
+ }
+
+ // Update the resultTextView with the final text with images
+ resultTextView.text = builder
+ },
+
+ Response.ErrorListener {
+ // Log the error message
+ Log.e("MyApp", "Error occurred: ${it.message}")
+
+ resultTextView.text = "That didn't work!"
+ })
+
+ stringRequest.setRetryPolicy(object : RetryPolicy {
+ override fun getCurrentTimeout(): Int {
+ return 500000
+ }
+
+ override fun getCurrentRetryCount(): Int {
+ return 15
+ }
+
+ override fun retry(error: VolleyError?) {
+
+ }
+ })
+
+ // Add the request to the RequestQueue.
+ queue.add(stringRequest)
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/example/buildathonstoryv0/ui/theme/Color.kt b/app/src/main/java/com/example/buildathonstoryv0/ui/theme/Color.kt
new file mode 100644
index 00000000..b716beb4
--- /dev/null
+++ b/app/src/main/java/com/example/buildathonstoryv0/ui/theme/Color.kt
@@ -0,0 +1,11 @@
+package com.example.buildathonstoryv0.ui.theme
+
+import androidx.compose.ui.graphics.Color
+
+val Purple80 = Color(0xFFD0BCFF)
+val PurpleGrey80 = Color(0xFFCCC2DC)
+val Pink80 = Color(0xFFEFB8C8)
+
+val Purple40 = Color(0xFF6650a4)
+val PurpleGrey40 = Color(0xFF625b71)
+val Pink40 = Color(0xFF7D5260)
\ No newline at end of file
diff --git a/app/src/main/java/com/example/buildathonstoryv0/ui/theme/Theme.kt b/app/src/main/java/com/example/buildathonstoryv0/ui/theme/Theme.kt
new file mode 100644
index 00000000..b7bee873
--- /dev/null
+++ b/app/src/main/java/com/example/buildathonstoryv0/ui/theme/Theme.kt
@@ -0,0 +1,70 @@
+package com.example.buildathonstoryv0.ui.theme
+
+import android.app.Activity
+import android.os.Build
+import androidx.compose.foundation.isSystemInDarkTheme
+import androidx.compose.material3.MaterialTheme
+import androidx.compose.material3.darkColorScheme
+import androidx.compose.material3.dynamicDarkColorScheme
+import androidx.compose.material3.dynamicLightColorScheme
+import androidx.compose.material3.lightColorScheme
+import androidx.compose.runtime.Composable
+import androidx.compose.runtime.SideEffect
+import androidx.compose.ui.graphics.toArgb
+import androidx.compose.ui.platform.LocalContext
+import androidx.compose.ui.platform.LocalView
+import androidx.core.view.WindowCompat
+
+private val DarkColorScheme = darkColorScheme(
+ primary = Purple80,
+ secondary = PurpleGrey80,
+ tertiary = Pink80
+)
+
+private val LightColorScheme = lightColorScheme(
+ primary = Purple40,
+ secondary = PurpleGrey40,
+ tertiary = Pink40
+
+ /* Other default colors to override
+ background = Color(0xFFFFFBFE),
+ surface = Color(0xFFFFFBFE),
+ onPrimary = Color.White,
+ onSecondary = Color.White,
+ onTertiary = Color.White,
+ onBackground = Color(0xFF1C1B1F),
+ onSurface = Color(0xFF1C1B1F),
+ */
+)
+
+@Composable
+fun BuildathonStoryV0Theme(
+ darkTheme: Boolean = isSystemInDarkTheme(),
+ // Dynamic color is available on Android 12+
+ dynamicColor: Boolean = true,
+ content: @Composable () -> Unit
+) {
+ val colorScheme = when {
+ dynamicColor && Build.VERSION.SDK_INT >= Build.VERSION_CODES.S -> {
+ val context = LocalContext.current
+ if (darkTheme) dynamicDarkColorScheme(context) else dynamicLightColorScheme(context)
+ }
+
+ darkTheme -> DarkColorScheme
+ else -> LightColorScheme
+ }
+ val view = LocalView.current
+ if (!view.isInEditMode) {
+ SideEffect {
+ val window = (view.context as Activity).window
+ window.statusBarColor = colorScheme.primary.toArgb()
+ WindowCompat.getInsetsController(window, view).isAppearanceLightStatusBars = darkTheme
+ }
+ }
+
+ MaterialTheme(
+ colorScheme = colorScheme,
+ typography = Typography,
+ content = content
+ )
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/example/buildathonstoryv0/ui/theme/Type.kt b/app/src/main/java/com/example/buildathonstoryv0/ui/theme/Type.kt
new file mode 100644
index 00000000..b5317383
--- /dev/null
+++ b/app/src/main/java/com/example/buildathonstoryv0/ui/theme/Type.kt
@@ -0,0 +1,34 @@
+package com.example.buildathonstoryv0.ui.theme
+
+import androidx.compose.material3.Typography
+import androidx.compose.ui.text.TextStyle
+import androidx.compose.ui.text.font.FontFamily
+import androidx.compose.ui.text.font.FontWeight
+import androidx.compose.ui.unit.sp
+
+// Set of Material typography styles to start with
+val Typography = Typography(
+ bodyLarge = TextStyle(
+ fontFamily = FontFamily.Default,
+ fontWeight = FontWeight.Normal,
+ fontSize = 16.sp,
+ lineHeight = 24.sp,
+ letterSpacing = 0.5.sp
+ )
+ /* Other default text styles to override
+ titleLarge = TextStyle(
+ fontFamily = FontFamily.Default,
+ fontWeight = FontWeight.Normal,
+ fontSize = 22.sp,
+ lineHeight = 28.sp,
+ letterSpacing = 0.sp
+ ),
+ labelSmall = TextStyle(
+ fontFamily = FontFamily.Default,
+ fontWeight = FontWeight.Medium,
+ fontSize = 11.sp,
+ lineHeight = 16.sp,
+ letterSpacing = 0.5.sp
+ )
+ */
+)
\ 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 00000000..2b068d11
--- /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/button_toggle.xml b/app/src/main/res/drawable/button_toggle.xml
new file mode 100644
index 00000000..63251bb4
--- /dev/null
+++ b/app/src/main/res/drawable/button_toggle.xml
@@ -0,0 +1,8 @@
+
+
+ -
+
+
+
+
+
diff --git a/app/src/main/res/drawable/car_background.xml b/app/src/main/res/drawable/car_background.xml
new file mode 100644
index 00000000..ca3826a4
--- /dev/null
+++ b/app/src/main/res/drawable/car_background.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/doremon_background.xml b/app/src/main/res/drawable/doremon_background.xml
new file mode 100644
index 00000000..ca3826a4
--- /dev/null
+++ b/app/src/main/res/drawable/doremon_background.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/ellipse_1.xml b/app/src/main/res/drawable/ellipse_1.xml
new file mode 100644
index 00000000..43060f2c
--- /dev/null
+++ b/app/src/main/res/drawable/ellipse_1.xml
@@ -0,0 +1,9 @@
+
+
+
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 00000000..07d5da9c
--- /dev/null
+++ b/app/src/main/res/drawable/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/lion_background.xml b/app/src/main/res/drawable/lion_background.xml
new file mode 100644
index 00000000..ca3826a4
--- /dev/null
+++ b/app/src/main/res/drawable/lion_background.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/pawpatrol_background.xml b/app/src/main/res/drawable/pawpatrol_background.xml
new file mode 100644
index 00000000..ca3826a4
--- /dev/null
+++ b/app/src/main/res/drawable/pawpatrol_background.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/peppapig_background.xml b/app/src/main/res/drawable/peppapig_background.xml
new file mode 100644
index 00000000..ca3826a4
--- /dev/null
+++ b/app/src/main/res/drawable/peppapig_background.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/science_background.xml b/app/src/main/res/drawable/science_background.xml
new file mode 100644
index 00000000..ca3826a4
--- /dev/null
+++ b/app/src/main/res/drawable/science_background.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/volume_background.xml b/app/src/main/res/drawable/volume_background.xml
new file mode 100644
index 00000000..ca3826a4
--- /dev/null
+++ b/app/src/main/res/drawable/volume_background.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/volume_dark_background.xml b/app/src/main/res/drawable/volume_dark_background.xml
new file mode 100644
index 00000000..ca3826a4
--- /dev/null
+++ b/app/src/main/res/drawable/volume_dark_background.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/whitecircle_background.xml b/app/src/main/res/drawable/whitecircle_background.xml
new file mode 100644
index 00000000..ca3826a4
--- /dev/null
+++ b/app/src/main/res/drawable/whitecircle_background.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 00000000..0463d6be
--- /dev/null
+++ b/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,177 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/mipmap-anydpi-v26/car.xml b/app/src/main/res/mipmap-anydpi-v26/car.xml
new file mode 100644
index 00000000..03082c81
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/car.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/doremon.xml b/app/src/main/res/mipmap-anydpi-v26/doremon.xml
new file mode 100644
index 00000000..af3e588d
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/doremon.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
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 00000000..6f3b755b
--- /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 00000000..6f3b755b
--- /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-v26/lion.xml b/app/src/main/res/mipmap-anydpi-v26/lion.xml
new file mode 100644
index 00000000..4218ddce
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/lion.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/pawpatrol.xml b/app/src/main/res/mipmap-anydpi-v26/pawpatrol.xml
new file mode 100644
index 00000000..f8be95b5
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/pawpatrol.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/peppapig.xml b/app/src/main/res/mipmap-anydpi-v26/peppapig.xml
new file mode 100644
index 00000000..2fe8356d
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/peppapig.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/science.xml b/app/src/main/res/mipmap-anydpi-v26/science.xml
new file mode 100644
index 00000000..4c826d25
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/science.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/volume.xml b/app/src/main/res/mipmap-anydpi-v26/volume.xml
new file mode 100644
index 00000000..1eda93bb
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/volume.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/volume_dark.xml b/app/src/main/res/mipmap-anydpi-v26/volume_dark.xml
new file mode 100644
index 00000000..7a837aaa
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/volume_dark.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/volume_round.xml b/app/src/main/res/mipmap-anydpi-v26/volume_round.xml
new file mode 100644
index 00000000..1eda93bb
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/volume_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/whitecircle.xml b/app/src/main/res/mipmap-anydpi-v26/whitecircle.xml
new file mode 100644
index 00000000..791436ea
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/whitecircle.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-hdpi/car_foreground.png b/app/src/main/res/mipmap-hdpi/car_foreground.png
new file mode 100644
index 00000000..9cd631b4
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/car_foreground.png differ
diff --git a/app/src/main/res/mipmap-hdpi/doremon_foreground.png b/app/src/main/res/mipmap-hdpi/doremon_foreground.png
new file mode 100644
index 00000000..fed50ed3
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/doremon_foreground.png differ
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 00000000..c209e78e
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 00000000..b2dfe3d1
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-hdpi/lion_foreground.png b/app/src/main/res/mipmap-hdpi/lion_foreground.png
new file mode 100644
index 00000000..7b1ab429
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/lion_foreground.png differ
diff --git a/app/src/main/res/mipmap-hdpi/pawpatrol_foreground.png b/app/src/main/res/mipmap-hdpi/pawpatrol_foreground.png
new file mode 100644
index 00000000..ae636755
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/pawpatrol_foreground.png differ
diff --git a/app/src/main/res/mipmap-hdpi/peppapig_foreground.png b/app/src/main/res/mipmap-hdpi/peppapig_foreground.png
new file mode 100644
index 00000000..ab88c7d6
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/peppapig_foreground.png differ
diff --git a/app/src/main/res/mipmap-hdpi/science_foreground.png b/app/src/main/res/mipmap-hdpi/science_foreground.png
new file mode 100644
index 00000000..e912118a
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/science_foreground.png differ
diff --git a/app/src/main/res/mipmap-hdpi/volume.png b/app/src/main/res/mipmap-hdpi/volume.png
new file mode 100644
index 00000000..ea4dd0aa
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/volume.png differ
diff --git a/app/src/main/res/mipmap-hdpi/volume_dark_foreground.png b/app/src/main/res/mipmap-hdpi/volume_dark_foreground.png
new file mode 100644
index 00000000..b0a5342b
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/volume_dark_foreground.png differ
diff --git a/app/src/main/res/mipmap-hdpi/volume_foreground.png b/app/src/main/res/mipmap-hdpi/volume_foreground.png
new file mode 100644
index 00000000..e197aaa7
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/volume_foreground.png differ
diff --git a/app/src/main/res/mipmap-hdpi/volume_round.png b/app/src/main/res/mipmap-hdpi/volume_round.png
new file mode 100644
index 00000000..b45117e5
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/volume_round.png differ
diff --git a/app/src/main/res/mipmap-hdpi/whitecircle_foreground.png b/app/src/main/res/mipmap-hdpi/whitecircle_foreground.png
new file mode 100644
index 00000000..d4cfaf39
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/whitecircle_foreground.png differ
diff --git a/app/src/main/res/mipmap-mdpi/car_foreground.png b/app/src/main/res/mipmap-mdpi/car_foreground.png
new file mode 100644
index 00000000..edcd5f28
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/car_foreground.png differ
diff --git a/app/src/main/res/mipmap-mdpi/doremon_foreground.png b/app/src/main/res/mipmap-mdpi/doremon_foreground.png
new file mode 100644
index 00000000..2972d242
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/doremon_foreground.png 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 00000000..4f0f1d64
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 00000000..62b611da
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-mdpi/lion_foreground.png b/app/src/main/res/mipmap-mdpi/lion_foreground.png
new file mode 100644
index 00000000..cd445bca
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/lion_foreground.png differ
diff --git a/app/src/main/res/mipmap-mdpi/pawpatrol_foreground.png b/app/src/main/res/mipmap-mdpi/pawpatrol_foreground.png
new file mode 100644
index 00000000..1961a034
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/pawpatrol_foreground.png differ
diff --git a/app/src/main/res/mipmap-mdpi/peppapig_foreground.png b/app/src/main/res/mipmap-mdpi/peppapig_foreground.png
new file mode 100644
index 00000000..49ad1432
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/peppapig_foreground.png differ
diff --git a/app/src/main/res/mipmap-mdpi/science_foreground.png b/app/src/main/res/mipmap-mdpi/science_foreground.png
new file mode 100644
index 00000000..01099614
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/science_foreground.png differ
diff --git a/app/src/main/res/mipmap-mdpi/volume.png b/app/src/main/res/mipmap-mdpi/volume.png
new file mode 100644
index 00000000..4263ed17
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/volume.png differ
diff --git a/app/src/main/res/mipmap-mdpi/volume_dark_foreground.png b/app/src/main/res/mipmap-mdpi/volume_dark_foreground.png
new file mode 100644
index 00000000..fda5c890
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/volume_dark_foreground.png differ
diff --git a/app/src/main/res/mipmap-mdpi/volume_foreground.png b/app/src/main/res/mipmap-mdpi/volume_foreground.png
new file mode 100644
index 00000000..dfcdd165
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/volume_foreground.png differ
diff --git a/app/src/main/res/mipmap-mdpi/volume_round.png b/app/src/main/res/mipmap-mdpi/volume_round.png
new file mode 100644
index 00000000..56fb2104
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/volume_round.png differ
diff --git a/app/src/main/res/mipmap-mdpi/whitecircle_foreground.png b/app/src/main/res/mipmap-mdpi/whitecircle_foreground.png
new file mode 100644
index 00000000..59247f26
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/whitecircle_foreground.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/car_foreground.png b/app/src/main/res/mipmap-xhdpi/car_foreground.png
new file mode 100644
index 00000000..857b2a01
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/car_foreground.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/doremon_foreground.png b/app/src/main/res/mipmap-xhdpi/doremon_foreground.png
new file mode 100644
index 00000000..949ebe41
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/doremon_foreground.png 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 00000000..948a3070
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 00000000..1b9a6956
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-xhdpi/lion_foreground.png b/app/src/main/res/mipmap-xhdpi/lion_foreground.png
new file mode 100644
index 00000000..d27b2226
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/lion_foreground.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/pawpatrol_foreground.png b/app/src/main/res/mipmap-xhdpi/pawpatrol_foreground.png
new file mode 100644
index 00000000..6c03c5b7
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/pawpatrol_foreground.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/peppapig_foreground.png b/app/src/main/res/mipmap-xhdpi/peppapig_foreground.png
new file mode 100644
index 00000000..f6f6f734
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/peppapig_foreground.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/science_foreground.png b/app/src/main/res/mipmap-xhdpi/science_foreground.png
new file mode 100644
index 00000000..e5640672
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/science_foreground.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/volume.png b/app/src/main/res/mipmap-xhdpi/volume.png
new file mode 100644
index 00000000..4704c857
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/volume.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/volume_dark_foreground.png b/app/src/main/res/mipmap-xhdpi/volume_dark_foreground.png
new file mode 100644
index 00000000..0430d0a3
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/volume_dark_foreground.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/volume_foreground.png b/app/src/main/res/mipmap-xhdpi/volume_foreground.png
new file mode 100644
index 00000000..fef3c40f
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/volume_foreground.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/volume_round.png b/app/src/main/res/mipmap-xhdpi/volume_round.png
new file mode 100644
index 00000000..1b9dcbc1
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/volume_round.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/whitecircle_foreground.png b/app/src/main/res/mipmap-xhdpi/whitecircle_foreground.png
new file mode 100644
index 00000000..715a5ac4
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/whitecircle_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/car_foreground.png b/app/src/main/res/mipmap-xxhdpi/car_foreground.png
new file mode 100644
index 00000000..7af5bb38
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/car_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/doremon_foreground.png b/app/src/main/res/mipmap-xxhdpi/doremon_foreground.png
new file mode 100644
index 00000000..8c3684df
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/doremon_foreground.png 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 00000000..28d4b77f
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 00000000..9287f508
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-xxhdpi/lion_foreground.png b/app/src/main/res/mipmap-xxhdpi/lion_foreground.png
new file mode 100644
index 00000000..d114fb91
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/lion_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/pawpatrol_foreground.png b/app/src/main/res/mipmap-xxhdpi/pawpatrol_foreground.png
new file mode 100644
index 00000000..ee2a52f9
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/pawpatrol_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/peppapig_foreground.png b/app/src/main/res/mipmap-xxhdpi/peppapig_foreground.png
new file mode 100644
index 00000000..b1755fbd
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/peppapig_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/science_foreground.png b/app/src/main/res/mipmap-xxhdpi/science_foreground.png
new file mode 100644
index 00000000..e62de785
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/science_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/volume.png b/app/src/main/res/mipmap-xxhdpi/volume.png
new file mode 100644
index 00000000..c5bd3d8e
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/volume.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/volume_dark_foreground.png b/app/src/main/res/mipmap-xxhdpi/volume_dark_foreground.png
new file mode 100644
index 00000000..a235d032
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/volume_dark_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/volume_foreground.png b/app/src/main/res/mipmap-xxhdpi/volume_foreground.png
new file mode 100644
index 00000000..0005448d
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/volume_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/volume_round.png b/app/src/main/res/mipmap-xxhdpi/volume_round.png
new file mode 100644
index 00000000..46117639
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/volume_round.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/whitecircle_foreground.png b/app/src/main/res/mipmap-xxhdpi/whitecircle_foreground.png
new file mode 100644
index 00000000..417002c2
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/whitecircle_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/car_foreground.png b/app/src/main/res/mipmap-xxxhdpi/car_foreground.png
new file mode 100644
index 00000000..6c1d3f2c
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/car_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/doremon_foreground.png b/app/src/main/res/mipmap-xxxhdpi/doremon_foreground.png
new file mode 100644
index 00000000..8b1a2ac9
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/doremon_foreground.png 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 00000000..aa7d6427
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 00000000..9126ae37
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/lion_foreground.png b/app/src/main/res/mipmap-xxxhdpi/lion_foreground.png
new file mode 100644
index 00000000..83e5d762
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/lion_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/pawpatrol_foreground.png b/app/src/main/res/mipmap-xxxhdpi/pawpatrol_foreground.png
new file mode 100644
index 00000000..eac23ae3
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/pawpatrol_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/peppapig_foreground.png b/app/src/main/res/mipmap-xxxhdpi/peppapig_foreground.png
new file mode 100644
index 00000000..242a1a35
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/peppapig_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/science_foreground.png b/app/src/main/res/mipmap-xxxhdpi/science_foreground.png
new file mode 100644
index 00000000..d4edef5f
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/science_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/volume.png b/app/src/main/res/mipmap-xxxhdpi/volume.png
new file mode 100644
index 00000000..5093732c
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/volume.png differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/volume_dark_foreground.png b/app/src/main/res/mipmap-xxxhdpi/volume_dark_foreground.png
new file mode 100644
index 00000000..d71bcdb1
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/volume_dark_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/volume_foreground.png b/app/src/main/res/mipmap-xxxhdpi/volume_foreground.png
new file mode 100644
index 00000000..59403b00
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/volume_foreground.png differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/volume_round.png b/app/src/main/res/mipmap-xxxhdpi/volume_round.png
new file mode 100644
index 00000000..6867c92c
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/volume_round.png differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/whitecircle_foreground.png b/app/src/main/res/mipmap-xxxhdpi/whitecircle_foreground.png
new file mode 100644
index 00000000..036eaad9
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/whitecircle_foreground.png differ
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
new file mode 100644
index 00000000..2cd3b021
--- /dev/null
+++ b/app/src/main/res/values/colors.xml
@@ -0,0 +1,16 @@
+
+
+ #FFBB86FC
+ #FF6200EE
+ #FF3700B3
+ #FF03DAC5
+ #FF018786
+ #FF000000
+ #FFFFFFFF
+ #E7E1E1
+ #E5C5C5
+ #F35F83
+ #D7ABAB
+ #3CA3EE
+ #5F89F3
+
\ 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 00000000..bb711cc3
--- /dev/null
+++ b/app/src/main/res/values/strings.xml
@@ -0,0 +1,3 @@
+
+ BuildathonStoryV0
+
\ No newline at end of file
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
new file mode 100644
index 00000000..dc421d50
--- /dev/null
+++ b/app/src/main/res/values/styles.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml
new file mode 100644
index 00000000..7af7f12d
--- /dev/null
+++ b/app/src/main/res/values/themes.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/xml/backup_rules.xml b/app/src/main/res/xml/backup_rules.xml
new file mode 100644
index 00000000..fa0f996d
--- /dev/null
+++ b/app/src/main/res/xml/backup_rules.xml
@@ -0,0 +1,13 @@
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/xml/data_extraction_rules.xml b/app/src/main/res/xml/data_extraction_rules.xml
new file mode 100644
index 00000000..9ee9997b
--- /dev/null
+++ b/app/src/main/res/xml/data_extraction_rules.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/ui-packages/frame/FONTS.txt b/app/src/main/ui-packages/frame/FONTS.txt
new file mode 100644
index 00000000..fa2acf63
--- /dev/null
+++ b/app/src/main/ui-packages/frame/FONTS.txt
@@ -0,0 +1,3 @@
+Open Sans
+Arimo
+Gloria Hallelujah
\ No newline at end of file
diff --git a/app/src/main/ui-packages/frame/VERSION.txt b/app/src/main/ui-packages/frame/VERSION.txt
new file mode 100644
index 00000000..ecabf819
--- /dev/null
+++ b/app/src/main/ui-packages/frame/VERSION.txt
@@ -0,0 +1 @@
+0.3.07
\ No newline at end of file
diff --git a/app/src/main/ui-packages/frame/battery_end.svg b/app/src/main/ui-packages/frame/battery_end.svg
new file mode 100644
index 00000000..5f15056e
--- /dev/null
+++ b/app/src/main/ui-packages/frame/battery_end.svg
@@ -0,0 +1,3 @@
+
diff --git a/app/src/main/ui-packages/frame/config.json b/app/src/main/ui-packages/frame/config.json
new file mode 100644
index 00000000..6491063f
--- /dev/null
+++ b/app/src/main/ui-packages/frame/config.json
@@ -0,0 +1,3 @@
+{
+ "preview-theme": "androidx.compose.material3.MaterialTheme"
+}
\ No newline at end of file
diff --git a/app/src/main/ui-packages/frame/ellipse_1.svg b/app/src/main/ui-packages/frame/ellipse_1.svg
new file mode 100644
index 00000000..55c82659
--- /dev/null
+++ b/app/src/main/ui-packages/frame/ellipse_1.svg
@@ -0,0 +1,17 @@
+
diff --git a/app/src/main/ui-packages/frame/ellipse_2.svg b/app/src/main/ui-packages/frame/ellipse_2.svg
new file mode 100644
index 00000000..91165662
--- /dev/null
+++ b/app/src/main/ui-packages/frame/ellipse_2.svg
@@ -0,0 +1,3 @@
+
diff --git a/app/src/main/ui-packages/frame/ellipse_3.svg b/app/src/main/ui-packages/frame/ellipse_3.svg
new file mode 100644
index 00000000..91165662
--- /dev/null
+++ b/app/src/main/ui-packages/frame/ellipse_3.svg
@@ -0,0 +1,3 @@
+
diff --git a/app/src/main/ui-packages/frame/ellipse_4.svg b/app/src/main/ui-packages/frame/ellipse_4.svg
new file mode 100644
index 00000000..91165662
--- /dev/null
+++ b/app/src/main/ui-packages/frame/ellipse_4.svg
@@ -0,0 +1,3 @@
+
diff --git a/app/src/main/ui-packages/frame/ellipse_5.svg b/app/src/main/ui-packages/frame/ellipse_5.svg
new file mode 100644
index 00000000..91165662
--- /dev/null
+++ b/app/src/main/ui-packages/frame/ellipse_5.svg
@@ -0,0 +1,3 @@
+
diff --git a/app/src/main/ui-packages/frame/ellipse_6.svg b/app/src/main/ui-packages/frame/ellipse_6.svg
new file mode 100644
index 00000000..91165662
--- /dev/null
+++ b/app/src/main/ui-packages/frame/ellipse_6.svg
@@ -0,0 +1,3 @@
+
diff --git a/app/src/main/ui-packages/frame/fill.svg b/app/src/main/ui-packages/frame/fill.svg
new file mode 100644
index 00000000..f20951ea
--- /dev/null
+++ b/app/src/main/ui-packages/frame/fill.svg
@@ -0,0 +1,3 @@
+
diff --git a/app/src/main/ui-packages/frame/fonts/relay_arimo_bold.ttf b/app/src/main/ui-packages/frame/fonts/relay_arimo_bold.ttf
new file mode 100644
index 00000000..c26951c1
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_arimo_bold.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_arimo_bold_italic.ttf b/app/src/main/ui-packages/frame/fonts/relay_arimo_bold_italic.ttf
new file mode 100644
index 00000000..e085b9a5
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_arimo_bold_italic.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_arimo_italic.ttf b/app/src/main/ui-packages/frame/fonts/relay_arimo_italic.ttf
new file mode 100644
index 00000000..49a03256
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_arimo_italic.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_arimo_medium.ttf b/app/src/main/ui-packages/frame/fonts/relay_arimo_medium.ttf
new file mode 100644
index 00000000..f2223e20
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_arimo_medium.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_arimo_medium_italic.ttf b/app/src/main/ui-packages/frame/fonts/relay_arimo_medium_italic.ttf
new file mode 100644
index 00000000..7572c83a
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_arimo_medium_italic.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_arimo_regular.ttf b/app/src/main/ui-packages/frame/fonts/relay_arimo_regular.ttf
new file mode 100644
index 00000000..7872b35a
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_arimo_regular.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_arimo_semibold.ttf b/app/src/main/ui-packages/frame/fonts/relay_arimo_semibold.ttf
new file mode 100644
index 00000000..170ab85d
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_arimo_semibold.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_arimo_semibold_italic.ttf b/app/src/main/ui-packages/frame/fonts/relay_arimo_semibold_italic.ttf
new file mode 100644
index 00000000..30f25d78
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_arimo_semibold_italic.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_gloria_hallelujah_regular.ttf b/app/src/main/ui-packages/frame/fonts/relay_gloria_hallelujah_regular.ttf
new file mode 100644
index 00000000..82d38744
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_gloria_hallelujah_regular.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_open_sans_bold.ttf b/app/src/main/ui-packages/frame/fonts/relay_open_sans_bold.ttf
new file mode 100644
index 00000000..4a5bc395
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_open_sans_bold.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_open_sans_bold_italic.ttf b/app/src/main/ui-packages/frame/fonts/relay_open_sans_bold_italic.ttf
new file mode 100644
index 00000000..8878a3e4
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_open_sans_bold_italic.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_open_sans_extrabold.ttf b/app/src/main/ui-packages/frame/fonts/relay_open_sans_extrabold.ttf
new file mode 100644
index 00000000..5dfb66cf
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_open_sans_extrabold.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_open_sans_extrabold_italic.ttf b/app/src/main/ui-packages/frame/fonts/relay_open_sans_extrabold_italic.ttf
new file mode 100644
index 00000000..d2669984
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_open_sans_extrabold_italic.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_open_sans_italic.ttf b/app/src/main/ui-packages/frame/fonts/relay_open_sans_italic.ttf
new file mode 100644
index 00000000..e84f9ee8
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_open_sans_italic.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_open_sans_light.ttf b/app/src/main/ui-packages/frame/fonts/relay_open_sans_light.ttf
new file mode 100644
index 00000000..cf8e0c77
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_open_sans_light.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_open_sans_light_italic.ttf b/app/src/main/ui-packages/frame/fonts/relay_open_sans_light_italic.ttf
new file mode 100644
index 00000000..d913f356
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_open_sans_light_italic.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_open_sans_medium.ttf b/app/src/main/ui-packages/frame/fonts/relay_open_sans_medium.ttf
new file mode 100644
index 00000000..a76d4ced
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_open_sans_medium.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_open_sans_medium_italic.ttf b/app/src/main/ui-packages/frame/fonts/relay_open_sans_medium_italic.ttf
new file mode 100644
index 00000000..5599691a
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_open_sans_medium_italic.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_open_sans_regular.ttf b/app/src/main/ui-packages/frame/fonts/relay_open_sans_regular.ttf
new file mode 100644
index 00000000..29e9e605
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_open_sans_regular.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_open_sans_semibold.ttf b/app/src/main/ui-packages/frame/fonts/relay_open_sans_semibold.ttf
new file mode 100644
index 00000000..a5711671
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_open_sans_semibold.ttf differ
diff --git a/app/src/main/ui-packages/frame/fonts/relay_open_sans_semibold_italic.ttf b/app/src/main/ui-packages/frame/fonts/relay_open_sans_semibold_italic.ttf
new file mode 100644
index 00000000..a7d2323f
Binary files /dev/null and b/app/src/main/ui-packages/frame/fonts/relay_open_sans_semibold_italic.ttf differ
diff --git a/app/src/main/ui-packages/frame/frame.json b/app/src/main/ui-packages/frame/frame.json
new file mode 100644
index 00000000..90e2a811
--- /dev/null
+++ b/app/src/main/ui-packages/frame/frame.json
@@ -0,0 +1,1297 @@
+{
+ "name": "frame",
+ "version": 32,
+ "source-key": {
+ "type": "figma",
+ "file": "EA82zIGa1a2Ljv3jfT2o8s",
+ "node": "101:275",
+ "version": "3898572926",
+ "component-id": "7bc8fe9d70ce15c1ab86e5f519b3b2b6178588f7"
+ },
+ "default": "Frame",
+ "documentation": "Basic Screen for Buildathon App",
+ "design": {
+ "atoms": [
+ {
+ "type": "group",
+ "id": "top_level",
+ "root": "true"
+ },
+ {
+ "type": "group",
+ "id": "Background"
+ },
+ {
+ "type": "vector",
+ "id": "Rectangle 1"
+ },
+ {
+ "type": "group",
+ "id": "StatusBar / iPhone 13"
+ },
+ {
+ "type": "group",
+ "id": "HomeIndicator"
+ },
+ {
+ "type": "vector",
+ "id": "Ellipse 1"
+ },
+ {
+ "type": "text",
+ "id": "Peppa Pig"
+ },
+ {
+ "type": "group",
+ "id": "Group 3"
+ },
+ {
+ "type": "group",
+ "id": "Group 6"
+ },
+ {
+ "type": "group",
+ "id": "Group 5"
+ },
+ {
+ "type": "group",
+ "id": "Group 4"
+ },
+ {
+ "type": "group",
+ "id": "Group 7"
+ },
+ {
+ "type": "vector",
+ "id": "Rectangle 5"
+ },
+ {
+ "type": "vector",
+ "id": "Rectangle 6"
+ },
+ {
+ "type": "text",
+ "id": "Enter other interests"
+ },
+ {
+ "type": "text",
+ "id": "Your Child’s name"
+ },
+ {
+ "type": "text",
+ "id": "Trains"
+ },
+ {
+ "type": "text",
+ "id": "Animals"
+ },
+ {
+ "type": "text",
+ "id": "Paw Patrol"
+ },
+ {
+ "type": "text",
+ "id": "Science"
+ },
+ {
+ "type": "text",
+ "id": "Truck"
+ },
+ {
+ "type": "vector",
+ "id": "Rectangle 8"
+ },
+ {
+ "type": "text",
+ "id": "Continue"
+ },
+ {
+ "type": "vector",
+ "id": "Rectangle 9"
+ },
+ {
+ "type": "text",
+ "id": "Back"
+ },
+ {
+ "type": "vector",
+ "id": "Vector 1"
+ },
+ {
+ "type": "vector",
+ "id": "Vector 3"
+ },
+ {
+ "type": "vector",
+ "id": "Vector 2"
+ },
+ {
+ "type": "group",
+ "id": "Notch"
+ },
+ {
+ "type": "group",
+ "id": "Left Side"
+ },
+ {
+ "type": "group",
+ "id": "Right Side"
+ },
+ {
+ "type": "vector",
+ "id": "Notch1"
+ },
+ {
+ "type": "group",
+ "id": "_StatusBar-time"
+ },
+ {
+ "type": "text",
+ "id": "9:41"
+ },
+ {
+ "type": "group",
+ "id": "Battery"
+ },
+ {
+ "type": "vector",
+ "id": "Icon / Mobile Signal"
+ },
+ {
+ "type": "vector",
+ "id": "Outline"
+ },
+ {
+ "type": "vector",
+ "id": "Battery End"
+ },
+ {
+ "type": "vector",
+ "id": "Fill"
+ },
+ {
+ "type": "vector",
+ "id": "Home Indicator"
+ },
+ {
+ "type": "vector",
+ "id": "Ellipse 2"
+ },
+ {
+ "type": "vector",
+ "id": "Ellipse 3"
+ },
+ {
+ "type": "vector",
+ "id": "Ellipse 4"
+ },
+ {
+ "type": "vector",
+ "id": "Ellipse 5"
+ },
+ {
+ "type": "vector",
+ "id": "Ellipse 6"
+ }
+ ],
+ "modes": {
+ "Frame": {
+ "rules": [
+ {
+ "id": "top_level",
+ "border-radius": "50.0",
+ "is-structured": "false",
+ "children": [
+ "Background",
+ "Rectangle 1",
+ "StatusBar / iPhone 13",
+ "HomeIndicator",
+ "Ellipse 1",
+ "Peppa Pig",
+ "Group 3",
+ "Group 6",
+ "Group 5",
+ "Group 4",
+ "Group 7",
+ "Rectangle 5",
+ "Rectangle 6",
+ "Enter other interests",
+ "Your Child’s name",
+ "Trains",
+ "Animals",
+ "Paw Patrol",
+ "Science",
+ "Truck",
+ "Rectangle 8",
+ "Continue",
+ "Rectangle 9",
+ "Back"
+ ],
+ "background-color": {
+ "alpha": "1.0",
+ "hue": "0.0",
+ "saturation": "0.0",
+ "value": "0.9647058823529412"
+ }
+ },
+ {
+ "id": "Background",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "-166.3507080078125"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "-11.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "735.3507080078125"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "926.8302001953125"
+ }
+ },
+ "is-structured": "false",
+ "children": [
+ "Vector 1",
+ "Vector 3",
+ "Vector 2"
+ ],
+ "clip-content": "false"
+ },
+ {
+ "id": "Rectangle 1",
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "390.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "844.0"
+ }
+ },
+ "vector-content": "rectangle_1.svg"
+ },
+ {
+ "id": "StatusBar / iPhone 13",
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "390.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "47.0"
+ }
+ },
+ "is-structured": "false",
+ "children": [
+ "Notch",
+ "Left Side",
+ "Right Side"
+ ]
+ },
+ {
+ "id": "HomeIndicator",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "7.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "810.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "375.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "34.0"
+ }
+ },
+ "is-structured": "false",
+ "children": [
+ "Home Indicator"
+ ],
+ "clip-content": "false"
+ },
+ {
+ "id": "Ellipse 1",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "39.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "102.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ }
+ },
+ "vector-content": "ellipse_1.svg"
+ },
+ {
+ "id": "Peppa Pig",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "58.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "126.0"
+ }
+ },
+ "font-weight": "600.0",
+ "color": {
+ "alpha": "1.0",
+ "hue": "0.0",
+ "saturation": "0.0",
+ "value": "0.0"
+ },
+ "text-content": "Peppa \nPig",
+ "overflow": "visible",
+ "text-size": "16.0",
+ "line-height": "1.36181640625",
+ "typeface": "Open Sans"
+ },
+ {
+ "id": "Group 3",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "158.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "102.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ }
+ },
+ "is-structured": "false",
+ "children": [
+ "Ellipse 2"
+ ],
+ "clip-content": "false"
+ },
+ {
+ "id": "Group 6",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "158.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "209.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ }
+ },
+ "is-structured": "false",
+ "children": [
+ "Ellipse 3"
+ ],
+ "clip-content": "false"
+ },
+ {
+ "id": "Group 5",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "39.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "213.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ }
+ },
+ "is-structured": "false",
+ "children": [
+ "Ellipse 4"
+ ],
+ "clip-content": "false"
+ },
+ {
+ "id": "Group 4",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "275.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "102.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ }
+ },
+ "is-structured": "false",
+ "children": [
+ "Ellipse 5"
+ ],
+ "clip-content": "false"
+ },
+ {
+ "id": "Group 7",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "275.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "209.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ }
+ },
+ "is-structured": "false",
+ "children": [
+ "Ellipse 6"
+ ],
+ "clip-content": "false"
+ },
+ {
+ "id": "Rectangle 5",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "30.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "331.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "325.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "39.0"
+ }
+ },
+ "vector-content": "rectangle_5.svg"
+ },
+ {
+ "id": "Rectangle 6",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "30.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "393.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "325.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "39.0"
+ }
+ },
+ "vector-content": "rectangle_6.svg"
+ },
+ {
+ "id": "Enter other interests",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "108.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "339.0"
+ }
+ },
+ "color": {
+ "alpha": "1.0",
+ "hue": "0.0",
+ "saturation": "0.0",
+ "value": "0.0"
+ },
+ "text-content": "Enter other interests",
+ "overflow": "visible",
+ "text-size": "20.0",
+ "line-height": "1.14990234375",
+ "typeface": "Arimo"
+ },
+ {
+ "id": "Your Child’s name",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "108.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "403.0"
+ }
+ },
+ "color": {
+ "alpha": "1.0",
+ "hue": "0.0",
+ "saturation": "0.0",
+ "value": "0.0"
+ },
+ "text-content": "Your Child’s name",
+ "overflow": "visible",
+ "text-size": "20.0",
+ "line-height": "1.14990234375",
+ "typeface": "Arimo"
+ },
+ {
+ "id": "Trains",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "181.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "137.0"
+ }
+ },
+ "font-weight": "600.0",
+ "color": {
+ "alpha": "1.0",
+ "hue": "0.0",
+ "saturation": "0.0",
+ "value": "0.0"
+ },
+ "text-content": "Trains",
+ "overflow": "visible",
+ "text-size": "16.0",
+ "line-height": "1.36181640625",
+ "typeface": "Open Sans"
+ },
+ {
+ "id": "Animals",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "290.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "137.0"
+ }
+ },
+ "font-weight": "600.0",
+ "color": {
+ "alpha": "1.0",
+ "hue": "0.0",
+ "saturation": "0.0",
+ "value": "0.0"
+ },
+ "text-content": "Animals",
+ "overflow": "visible",
+ "text-size": "16.0",
+ "line-height": "1.36181640625",
+ "typeface": "Open Sans"
+ },
+ {
+ "id": "Paw Patrol",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "61.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "236.0"
+ }
+ },
+ "font-weight": "600.0",
+ "color": {
+ "alpha": "1.0",
+ "hue": "0.0",
+ "saturation": "0.0",
+ "value": "0.0"
+ },
+ "text-content": "Paw \nPatrol",
+ "overflow": "visible",
+ "text-size": "16.0",
+ "line-height": "1.36181640625",
+ "typeface": "Open Sans"
+ },
+ {
+ "id": "Science",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "178.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "244.0"
+ }
+ },
+ "font-weight": "600.0",
+ "color": {
+ "alpha": "1.0",
+ "hue": "0.0",
+ "saturation": "0.0",
+ "value": "0.0"
+ },
+ "text-content": "Science",
+ "overflow": "visible",
+ "text-size": "16.0",
+ "line-height": "1.36181640625",
+ "typeface": "Open Sans"
+ },
+ {
+ "id": "Truck",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "301.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "244.0"
+ }
+ },
+ "font-weight": "600.0",
+ "color": {
+ "alpha": "1.0",
+ "hue": "0.0",
+ "saturation": "0.0",
+ "value": "0.0"
+ },
+ "text-content": "Truck",
+ "overflow": "visible",
+ "text-size": "16.0",
+ "line-height": "1.36181640625",
+ "typeface": "Open Sans"
+ },
+ {
+ "id": "Rectangle 8",
+ "border-radius": "24.0",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "30.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "698.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "325.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "47.0"
+ }
+ },
+ "vector-content": "rectangle_8.svg"
+ },
+ {
+ "id": "Continue",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "128.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "703.0"
+ }
+ },
+ "font-weight": "700.0",
+ "color": {
+ "alpha": "1.0",
+ "hue": "0.0",
+ "saturation": "0.0",
+ "value": "1.0"
+ },
+ "text-content": "Continue",
+ "overflow": "visible",
+ "text-size": "28.0",
+ "line-height": "1.36181640625",
+ "typeface": "Open Sans"
+ },
+ {
+ "id": "Rectangle 9",
+ "border-radius": "24.0",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "30.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "763.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "325.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "47.0"
+ }
+ },
+ "vector-content": "rectangle_9.svg"
+ },
+ {
+ "id": "Back",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "155.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "768.0"
+ }
+ },
+ "font-weight": "700.0",
+ "color": {
+ "alpha": "1.0",
+ "hue": "0.0",
+ "saturation": "0.0",
+ "value": "1.0"
+ },
+ "text-content": "Back",
+ "overflow": "visible",
+ "text-size": "28.0",
+ "line-height": "1.36181640625",
+ "typeface": "Open Sans"
+ },
+ {
+ "id": "Vector 1",
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "441.3507080078125"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "670.357177734375"
+ }
+ },
+ "vector-content": "vector_1.svg"
+ },
+ {
+ "id": "Vector 3",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "46.3507080078125"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "491.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "501.0984191894531"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "435.8302001953125"
+ }
+ },
+ "vector-content": "vector_3.svg"
+ },
+ {
+ "id": "Vector 2",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "377.3507080078125"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "31.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "358.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "540.36669921875"
+ }
+ },
+ "vector-content": "vector_2.svg"
+ },
+ {
+ "id": "Notch",
+ "presence": "false",
+ "alignment": {
+ "horizontal": {
+ "attachment": "center",
+ "offset": "0.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "-2.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "164.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "32.0"
+ }
+ },
+ "is-structured": "false",
+ "children": [
+ "Notch1"
+ ],
+ "clip-content": "false"
+ },
+ {
+ "id": "Left Side",
+ "border-radius": "24.0",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "27.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "14.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "54.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "21.0"
+ }
+ },
+ "is-structured": "false",
+ "children": [
+ "_StatusBar-time"
+ ],
+ "clip-content": "false"
+ },
+ {
+ "id": "Right Side",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "286.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "19.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "77.40118408203125"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "13.0"
+ }
+ },
+ "is-structured": "false",
+ "children": [
+ "Battery",
+ "Icon / Mobile Signal"
+ ],
+ "clip-content": "false"
+ },
+ {
+ "id": "Notch1",
+ "alignment": {
+ "horizontal": {
+ "attachment": "center",
+ "offset": "-0.000003814697265625"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "0.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "164.00001525878906"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "32.0"
+ }
+ }
+ },
+ {
+ "id": "_StatusBar-time",
+ "border-radius": "24.0",
+ "alignment": {
+ "horizontal": {
+ "attachment": "center",
+ "offset": "0.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "0.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "54.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "21.0"
+ }
+ },
+ "is-structured": "false",
+ "children": [
+ "9:41"
+ ],
+ "clip-content": "false"
+ },
+ {
+ "id": "9:41",
+ "alignment": {
+ "horizontal": {
+ "attachment": "start",
+ "offset": "0.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "1.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "54.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "20.0"
+ }
+ },
+ "color": {
+ "alpha": "1.0",
+ "hue": "0.0",
+ "saturation": "0.0",
+ "value": "1.0"
+ },
+ "text-content": "9:41",
+ "overflow": "visible",
+ "max-lines": "-1",
+ "text-size": "17.0",
+ "letter-spacing": "-0.40799999237060547",
+ "line-height": "1.2941175842285155",
+ "typeface": "Gloria Hallelujah"
+ },
+ {
+ "id": "Battery",
+ "margin": {
+ "left": "50.0"
+ },
+ "is-structured": "false",
+ "children": [
+ "Outline",
+ "Battery End",
+ "Fill"
+ ],
+ "clip-content": "false"
+ },
+ {
+ "id": "Icon / Mobile Signal",
+ "alignment": {
+ "horizontal": {
+ "attachment": "center",
+ "offset": "-29.700592041015625"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "1.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "18.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "12.0"
+ }
+ },
+ "vector-content": "icon_mobile_signal.svg"
+ },
+ {
+ "id": "Outline",
+ "border-radius": "4.0",
+ "alignment": {
+ "horizontal": {
+ "attachment": "center",
+ "offset": "-1.200592041015625"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "0.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "25.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "13.0"
+ }
+ },
+ "vector-content": "outline.svg"
+ },
+ {
+ "id": "Battery End",
+ "alignment": {
+ "horizontal": {
+ "attachment": "center",
+ "offset": "13.0"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "5.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "1.40118408203125"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "4.2203369140625"
+ }
+ },
+ "vector-content": "battery_end.svg"
+ },
+ {
+ "id": "Fill",
+ "border-radius": "2.0",
+ "alignment": {
+ "horizontal": {
+ "attachment": "center",
+ "offset": "-1.200592041015625"
+ },
+ "vertical": {
+ "attachment": "start",
+ "offset": "2.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "21.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "9.0"
+ }
+ },
+ "vector-content": "fill.svg"
+ },
+ {
+ "id": "Home Indicator",
+ "border-radius": "100.0",
+ "alignment": {
+ "horizontal": {
+ "attachment": "center",
+ "offset": "0.5"
+ },
+ "vertical": {
+ "attachment": "end",
+ "offset": "-8.0"
+ }
+ },
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "134.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "5.0"
+ }
+ },
+ "vector-content": "home_indicator.svg"
+ },
+ {
+ "id": "Ellipse 2",
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ }
+ },
+ "vector-content": "ellipse_2.svg"
+ },
+ {
+ "id": "Ellipse 3",
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ }
+ },
+ "vector-content": "ellipse_3.svg"
+ },
+ {
+ "id": "Ellipse 4",
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ }
+ },
+ "vector-content": "ellipse_4.svg"
+ },
+ {
+ "id": "Ellipse 5",
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ }
+ },
+ "vector-content": "ellipse_5.svg"
+ },
+ {
+ "id": "Ellipse 6",
+ "size-constraints": {
+ "width-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ },
+ "height-constraints": {
+ "sizing-mode": "fixed",
+ "value": "93.0"
+ }
+ },
+ "vector-content": "ellipse_6.svg"
+ }
+ ]
+ }
+ }
+ },
+ "previews": [
+ {
+ "design": "Frame",
+ "size": {
+ "width": 390.0,
+ "height": 844.0
+ }
+ }
+ ],
+ "adin-component-search-paths": [],
+ "image-search-paths": [],
+ "vector-search-paths": []
+}
\ No newline at end of file
diff --git a/app/src/main/ui-packages/frame/frame_preview.png b/app/src/main/ui-packages/frame/frame_preview.png
new file mode 100644
index 00000000..4edcdb0d
Binary files /dev/null and b/app/src/main/ui-packages/frame/frame_preview.png differ
diff --git a/app/src/main/ui-packages/frame/home_indicator.svg b/app/src/main/ui-packages/frame/home_indicator.svg
new file mode 100644
index 00000000..ce4d360f
--- /dev/null
+++ b/app/src/main/ui-packages/frame/home_indicator.svg
@@ -0,0 +1,3 @@
+
diff --git a/app/src/main/ui-packages/frame/icon_mobile_signal.svg b/app/src/main/ui-packages/frame/icon_mobile_signal.svg
new file mode 100644
index 00000000..6201ea29
--- /dev/null
+++ b/app/src/main/ui-packages/frame/icon_mobile_signal.svg
@@ -0,0 +1,6 @@
+
diff --git a/app/src/main/ui-packages/frame/outline.svg b/app/src/main/ui-packages/frame/outline.svg
new file mode 100644
index 00000000..f3108481
--- /dev/null
+++ b/app/src/main/ui-packages/frame/outline.svg
@@ -0,0 +1,3 @@
+
diff --git a/app/src/main/ui-packages/frame/rectangle_1.svg b/app/src/main/ui-packages/frame/rectangle_1.svg
new file mode 100644
index 00000000..f708c222
--- /dev/null
+++ b/app/src/main/ui-packages/frame/rectangle_1.svg
@@ -0,0 +1,13 @@
+
diff --git a/app/src/main/ui-packages/frame/rectangle_5.svg b/app/src/main/ui-packages/frame/rectangle_5.svg
new file mode 100644
index 00000000..752f2112
--- /dev/null
+++ b/app/src/main/ui-packages/frame/rectangle_5.svg
@@ -0,0 +1,17 @@
+
diff --git a/app/src/main/ui-packages/frame/rectangle_6.svg b/app/src/main/ui-packages/frame/rectangle_6.svg
new file mode 100644
index 00000000..2440f628
--- /dev/null
+++ b/app/src/main/ui-packages/frame/rectangle_6.svg
@@ -0,0 +1,17 @@
+
diff --git a/app/src/main/ui-packages/frame/rectangle_8.svg b/app/src/main/ui-packages/frame/rectangle_8.svg
new file mode 100644
index 00000000..a152afc4
--- /dev/null
+++ b/app/src/main/ui-packages/frame/rectangle_8.svg
@@ -0,0 +1,17 @@
+
diff --git a/app/src/main/ui-packages/frame/rectangle_9.svg b/app/src/main/ui-packages/frame/rectangle_9.svg
new file mode 100644
index 00000000..269a5af9
--- /dev/null
+++ b/app/src/main/ui-packages/frame/rectangle_9.svg
@@ -0,0 +1,17 @@
+
diff --git a/app/src/main/ui-packages/frame/vector_1.svg b/app/src/main/ui-packages/frame/vector_1.svg
new file mode 100644
index 00000000..f7e71d52
--- /dev/null
+++ b/app/src/main/ui-packages/frame/vector_1.svg
@@ -0,0 +1,12 @@
+
diff --git a/app/src/main/ui-packages/frame/vector_2.svg b/app/src/main/ui-packages/frame/vector_2.svg
new file mode 100644
index 00000000..7e1ebd86
--- /dev/null
+++ b/app/src/main/ui-packages/frame/vector_2.svg
@@ -0,0 +1,12 @@
+
diff --git a/app/src/main/ui-packages/frame/vector_3.svg b/app/src/main/ui-packages/frame/vector_3.svg
new file mode 100644
index 00000000..bc04d1a0
--- /dev/null
+++ b/app/src/main/ui-packages/frame/vector_3.svg
@@ -0,0 +1,12 @@
+
diff --git a/app/src/main/volume-playstore.png b/app/src/main/volume-playstore.png
new file mode 100644
index 00000000..a3a79fe9
Binary files /dev/null and b/app/src/main/volume-playstore.png differ
diff --git a/app/src/test/java/com/example/buildathonstoryv0/ExampleUnitTest.kt b/app/src/test/java/com/example/buildathonstoryv0/ExampleUnitTest.kt
new file mode 100644
index 00000000..0fcb778f
--- /dev/null
+++ b/app/src/test/java/com/example/buildathonstoryv0/ExampleUnitTest.kt
@@ -0,0 +1,17 @@
+package com.example.buildathonstoryv0
+
+import org.junit.Test
+
+import org.junit.Assert.*
+
+/**
+ * Example local unit test, which will execute on the development machine (host).
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+class ExampleUnitTest {
+ @Test
+ fun addition_isCorrect() {
+ assertEquals(4, 2 + 2)
+ }
+}
\ No newline at end of file
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 00000000..43143137
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,6 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+plugins {
+ id 'com.android.application' version '8.0.2' apply false
+ id 'com.android.library' version '8.0.2' apply false
+ id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
+}
\ No newline at end of file
diff --git a/gradle.properties b/gradle.properties
new file mode 100644
index 00000000..3c5031eb
--- /dev/null
+++ b/gradle.properties
@@ -0,0 +1,23 @@
+# Project-wide Gradle settings.
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. More details, visit
+# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
+# org.gradle.parallel=true
+# AndroidX package structure to make it clearer which packages are bundled with the
+# Android operating system, and which are packaged with your app's APK
+# https://developer.android.com/topic/libraries/support-library/androidx-rn
+android.useAndroidX=true
+# Kotlin code style for this project: "official" or "obsolete":
+kotlin.code.style=official
+# Enables namespacing of each library's R class so that its R class includes only the
+# resources declared in the library itself and none from the library's dependencies,
+# thereby reducing the size of the R class for that library
+android.nonTransitiveRClass=true
\ No newline at end of file
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 00000000..e708b1c0
Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 00000000..6d41cd24
--- /dev/null
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Fri Jul 28 13:49:23 IST 2023
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
diff --git a/gradlew b/gradlew
new file mode 100644
index 00000000..4f906e0c
--- /dev/null
+++ b/gradlew
@@ -0,0 +1,185 @@
+#!/usr/bin/env sh
+
+#
+# Copyright 2015 the original author or authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin or MSYS, switch paths to Windows format before running java
+if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=`expr $i + 1`
+ done
+ case $i in
+ 0) set -- ;;
+ 1) set -- "$args0" ;;
+ 2) set -- "$args0" "$args1" ;;
+ 3) set -- "$args0" "$args1" "$args2" ;;
+ 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=`save "$@"`
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
+
+exec "$JAVACMD" "$@"
diff --git a/gradlew.bat b/gradlew.bat
new file mode 100644
index 00000000..ac1b06f9
--- /dev/null
+++ b/gradlew.bat
@@ -0,0 +1,89 @@
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@rem Licensed under the Apache License, Version 2.0 (the "License");
+@rem you may not use this file except in compliance with the License.
+@rem You may obtain a copy of the License at
+@rem
+@rem https://www.apache.org/licenses/LICENSE-2.0
+@rem
+@rem Unless required by applicable law or agreed to in writing, software
+@rem distributed under the License is distributed on an "AS IS" BASIS,
+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@rem See the License for the specific language governing permissions and
+@rem limitations under the License.
+@rem
+
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Resolve any "." and ".." in APP_HOME to make it shorter.
+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/local.properties b/local.properties
new file mode 100644
index 00000000..06b569a2
--- /dev/null
+++ b/local.properties
@@ -0,0 +1,10 @@
+## This file is automatically generated by Android Studio.
+# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
+#
+# This file should *NOT* be checked into Version Control Systems,
+# as it contains information specific to your local configuration.
+#
+# Location of the SDK. This is only used by Gradle.
+# For customization when using a Version Control System, please read the
+# header note.
+sdk.dir=C\:\\Users\\gandh\\AppData\\Local\\Android\\Sdk
\ No newline at end of file
diff --git a/settings.gradle b/settings.gradle
new file mode 100644
index 00000000..ea6faf14
--- /dev/null
+++ b/settings.gradle
@@ -0,0 +1,16 @@
+pluginManagement {
+ repositories {
+ google()
+ mavenCentral()
+ gradlePluginPortal()
+ }
+}
+dependencyResolutionManagement {
+ repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
+ repositories {
+ google()
+ mavenCentral()
+ }
+}
+rootProject.name = "BuildathonStoryV0"
+include ':app'