From a38961ad84aebc8967cd8a8ec22cd46149105b5c Mon Sep 17 00:00:00 2001 From: Jafar Zakariya <75930848+jafzak@users.noreply.github.com> Date: Sun, 21 Jan 2024 21:00:34 +0100 Subject: [PATCH] Update 105-hello-world-app.md Added resource for creating first android app --- .../content/101-the-fundamentals/105-hello-world-app.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/android/content/101-the-fundamentals/105-hello-world-app.md b/src/data/roadmaps/android/content/101-the-fundamentals/105-hello-world-app.md index 35a2fc7da..f51a3ba76 100644 --- a/src/data/roadmaps/android/content/101-the-fundamentals/105-hello-world-app.md +++ b/src/data/roadmaps/android/content/101-the-fundamentals/105-hello-world-app.md @@ -1,3 +1,6 @@ # Create a basic Hello World App -The "Hello World" app is a simple project that you can build when you're getting started with Android development. It's often the first program that beginners learn to build in a new system. It's usually considered the simplest form of program that displays a message to the user - "Hello, World!" In Android, this involves creating a new project from the Android Studio and setting up the main activity. The main activity file is primarily written in Java or Kotlin where you can code for the display message, while the layout design view can be created in the XML file. \ No newline at end of file +The "Hello World" app is a simple project that you can build when you're getting started with Android development. It's often the first program that beginners learn to build in a new system. It's usually considered the simplest form of program that displays a message to the user - "Hello, World!" In Android, this involves creating a new project from the Android Studio and setting up the main activity. The main activity file is primarily written in Java or Kotlin where you can code for the display message, while the layout design view can be created in the XML file. + +Resources: +- [Create your first android app](https://developer.android.com/codelabs/basic-android-kotlin-compose-first-app)