Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Thriving in Android Development Using Kotlin
Thriving in Android Development Using Kotlin

Thriving in Android Development Using Kotlin : A project-based guide to using the latest Android features for developing production-grade apps

Arrow left icon
Profile Icon Gema Socorro Rodríguez
Arrow right icon
$29.99 $43.99
Full star icon Full star icon Full star icon Full star icon Full star icon 5 (5 Ratings)
eBook Jul 2024 410 pages 1st Edition
eBook
$29.99 $43.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m
Arrow left icon
Profile Icon Gema Socorro Rodríguez
Arrow right icon
$29.99 $43.99
Full star icon Full star icon Full star icon Full star icon Full star icon 5 (5 Ratings)
eBook Jul 2024 410 pages 1st Edition
eBook
$29.99 $43.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m
eBook
$29.99 $43.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Thriving in Android Development Using Kotlin

Building the UI for Your Messaging App

In this first chapter, we’re going to start building a messaging app called WhatsPackt (referring to a popular messaging app that you probably already know about). At this point in the project, we must make some important technical decisions and create the structure needed to build it. This is what we will be focusing on, as well as working on the app’s user interface.

By the end of this chapter, you will have hands-on experience creating a messaging app from scratch, organizing and defining the app modules, deciding which dependency injection framework you will use, using Jetpack Navigation to navigate between the app features, and using Jetpack Compose to build the main parts of the user interface.

This chapter is organized into the following topics:

  • Defining the app structure and navigation
  • Building the main screen
  • Building the chats list
  • Building the messages list

Technical requirements

Android Studio is the official standard integrated development environment (IDE) for developing Android apps. Although you can use other IDEs, editors, and Android tools if you prefer, all the examples in this book will be based on this IDE.

For that reason, we recommend that you set up your computer with the latest stable version of Android Studio installed. If you haven’t already, you can download it here: https://developer.android.com/studio. By following the installation steps, you will be able to install the IDE and set up at least one emulator with one Android SDK installed.

Once installed, we can start creating the project. Android Studio will offer us a set of templates to start with. We will choose the Empty Activity option, as shown in the following screenshot:

Figure 1.1: Android Studio new project template selection with the Empty Activity option selected

Figure 1.1: Android Studio new project template selection with the Empty Activity option selected

You will then be asked to select a project and package...

Defining the app structure and navigation

Before designing the app structure, we must have a basic idea of the features it should include. In our case, we want to have the following:

  • A main screen to create new or access already existing conversations
  • A list containing all the conversations
  • A screen for a single conversation

As this is going to be a production-ready app, we must design its code base while considering that it should be easy to scale and maintain. In that regard, we should use modularization.

Modularization

Modularization is the practice of dividing the code of an application into loosely coupled and self-contained parts, each of which can be compiled and tested in isolation. This technique allows developers to break down large and complex applications into more manageable parts that are easier to maintain.

By modularizing Android applications, modules can be built in parallel, which can significantly improve build time. Additionally,...

Building the main screen

Now that we have the main structure of our app ready, it is time to start building the main screen.

Let’s analyze what components our main screen will have:

Figure 1.9: The ConversationsList screen

Figure 1.9: The ConversationsList screen

As you can see, we are going to include the following:

  • A top bar
  • A tab bar to navigate to the main sections (note that this book will only cover the development of the chat section; we will not cover the status and calls sections)
  • A list containing the current conversations (which we will complete later in this chapter)
  • A floating button to create a new chat

Let’s start with the main screen.

Adding a scaffold to the main screen

Previously, we created an empty version of the first screen (ConversationsListScreen), as follows:

package com.packt.feature.conversations.ui
import androidx.compose.runtime.Composable
@Composable
fun ConversationsListScreen(
    onNewConversationClick...

Creating the conversations list

In this section, we are going to create all the pieces we need to show the conversations list. We will start with the UI data model, which will represent the information that the app is going to show in the list, the Conversation composable, which will draw every item of the list, and finally the list composable itself.

Modeling the conversation

First, we are going to model what is going to be the entity we will be using through our conversations list components: the Conversation model.

As part of the conversation model, we want to show the avatar of the other participant (we are just doing one-to-one conversations), their name, the first line of the last message, the time the message was received, and a number indicating how many unread messages there are.

Taking that information into account, we will start creating a data class to hold the data we’ll need:

data class Conversation(
    val id: String,
 ...

Building the messages list

In this section, we are going to create the UI models that are needed to create the chat screen and the messages two users could have exchanged. Then, we will create the Message composable, and finally, the rest of the screen, including the list of messages.

Modeling the Chat and Message models

Taking into account the information we have to show on the chat screen, we are going to need two data models: one for the static data related to the conversation (for example, the name of the user we are talking to, their avatar, and so on) and one data model per message. This will be the model for the Chat model:

data class Chat(
    val id: String,
    val name: String,
    val avatar: String
)

In this case, we will need the ID of the chat, the name of the person we are talking to, and their avatar address.

Regarding the Message model, we will create the following classes:

data class Message...

Summary

In this first chapter, we started our first project, WhatsPackt, a messaging app.

We accomplished several initial tasks to build this app, such as organizing modules, preparing dependency injection and navigation, constructing the main screen, creating the conversations list, and building the messages list.

Throughout this process, we’ve learned about modularization and the various approaches to organizing it. We’ve also learned about popular libraries for managing dependency injection, how to initialize them, and how to set up Compose navigation. Additionally, we became familiar with using Jetpack Compose to create our user interface.

As we move forward, it’s time to give some love and life to our chats. In the next chapter, we will explore how to retrieve and send messages and integrate them into our recently created user interfaces.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Understand complex concepts in a coherent way by solving challenging real-world problems and developing three practical projects
  • Use the latest features of libraries in Jetpack Compose, Room, CameraX, ExoPlayer, and more
  • Leverage best practices for UI creation, app structure, data handling, and lifecycle management
  • Purchase of the print or Kindle book includes a free PDF eBook

Description

With resources on Android and Kotlin abound, it’s difficult to find content that focuses on resolving common challenges faced by app developers. This book by Gema Socorro Rodríguez – a Google Developer Expert for Android with over 15 years of experience and a proven track record as an effective instructor – is designed to bridge the gap between theory and real-world application. It equips you with the skills to tackle everyday problems in Android development through hands-on projects. Under Gema's expert guidance, you’ll build three sophisticated Android projects. You'll start your development journey by building a WhatsApp-like application, learning how to process asynchronous messages reactively, render them using Jetpack Compose, and advance to creating and uploading a backup of these messages. Next, you’ll channel your creativity into Packtagram, an Instagram-inspired app that offers advanced photo-editing capabilities using the latest CameraX libraries. Your final project will be a Netflix-style app, integrating video playback functionality with ExoPlayer for both foreground and background operations, and implementing device casting features. By the end of this book, you'll have crafted three fully functional, multi-platform projects and gained the confidence to solve the most common challenges in Android development.

Who is this book for?

If you're a mid-level Android engineer, this book is for you as it will not only teach you how to solve issues that occur in real-world apps but also benefit you in your day-to-day work. This book will also help junior engineers who want to get exposed to complex problems and explore best practices to solve them. A basic understanding of Android and Kotlin concepts such as views, activities, lifecycle, and Kotlin coroutines will be useful to get the most out of this book.

What you will learn

  • Create complex UIs with Jetpack Compose
  • Structure and modularize apps with a focus on further scaling
  • Connect your app to synchronous and asynchronous remote sources
  • Store and cache information and manage the lifecycle of this data
  • Execute periodic tasks using WorkManager
  • Capture and edit photos and videos using CameraX
  • Authenticate your users securely
  • Play videos in the foreground and background and cast them to other devices

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jul 19, 2024
Length: 410 pages
Edition : 1st
Language : English
ISBN-13 : 9781837632770
Vendor :
JetBrains
Category :
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Jul 19, 2024
Length: 410 pages
Edition : 1st
Language : English
ISBN-13 : 9781837632770
Vendor :
JetBrains
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 141.97
Mastering Kotlin for Android 14
$39.99
Kickstart Modern Android Development with Jetpack and Kotlin
$46.99
Thriving in Android Development Using Kotlin
$54.99
Total $ 141.97 Stars icon

Table of Contents

14 Chapters
Part 1:Creating WhatsPackt, a Messaging App Chevron down icon Chevron up icon
Chapter 1: Building the UI for Your Messaging App Chevron down icon Chevron up icon
Chapter 2: Setting Up WhatsPackt’s Messaging Abilities Chevron down icon Chevron up icon
Chapter 3: Backing Up Your WhatsPackt Messages Chevron down icon Chevron up icon
Part 2:Creating Packtagram, a Photo Media App Chevron down icon Chevron up icon
Chapter 4: Building the Packtagram UI Chevron down icon Chevron up icon
Chapter 5: Creating a Photo Editor Using CameraX Chevron down icon Chevron up icon
Chapter 6: Adding Video and Editing Functionality to Packtagram Chevron down icon Chevron up icon
Part 3:Creating Packtflix, a Video Media App Chevron down icon Chevron up icon
Chapter 7: Starting a Video Streaming App and Adding Authentication Chevron down icon Chevron up icon
Chapter 8: Adding Media Playback to Packtflix with ExoPlayer Chevron down icon Chevron up icon
Chapter 9: Extending Video Playback in Your Packtflix App Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Full star icon 5
(5 Ratings)
5 star 100%
4 star 0%
3 star 0%
2 star 0%
1 star 0%
Leke Aug 22, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book is beginner-friendly, easy to read, and understand. It introduces modern concepts, architecture, tools, and services to build great Android apps. With the use of Jetpack Compose, Hilt for dependency injection, Flows, multiple architectures, etc., you will get up to speed with building Android apps like a professional. I recommend this book to anyone and this is coming from a Senior Android Engineer.
Amazon Verified review Amazon
Paula Paris Jul 27, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book is ideal for advanced software developers with a background in clean architecture. Gema's work will help you conquer the native Android domain by leveraging your past clean architecture experiences on iOS, Flutter, or similar platforms.These chapters cover aspects from disciplines, such as modularization by feature or dependency injection, to platform-specific technologies like Jetpack Compose or ExoPlayer. There's also great coverage of companion components beyond the client environment, such as Firebase, Amazon S3, and other cloud-based technologies.I'm extremely happy with this book. I learned topics like WebSockets, that I had been wondering about for a long time. And I also got a deeper understanding on subjects that I knew, although to a lesser extent.I can't give less than 5 stars. Excellence!
Amazon Verified review Amazon
Amazon Customer Jul 27, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I found this book really helpful! I struggled to find information online on how to use Websockets, ExoPlayer or CamareX filtres. This book covers these areas and many more. I can't wait to put everything I've learned here into practice and I can definitely see myself keeping this manual close as a reference in my day to day. I really hope there is a follow up to go deep into other aspects of these apps!
Amazon Verified review Amazon
Steven Aug 28, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
"Thriving in Android Development Using Kotlin" is a practical and hands-on guide that elevates your Android development skills by addressing real-world challenges using the latest Android framework and Kotlin features. The book is structured around three well-thought-out projects inspired by popular apps like WhatsApp, Instagram, and Netflix, which progressively advance your skills from messaging apps to more complex applications involving photo editing with CameraX and video streaming using ExoPlayer. Each project focuses on solving specific challenges, such as handling asynchronous messages, building complex UIs with Jetpack Compose, and managing multimedia operations, providing an immersive learning experience.
Amazon Verified review Amazon
Pavan Vulisetti Aug 31, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
"Thriving in Android Development Using Kotlin" is an excellent guide for beginner and mid-level Android engineers looking to enhance their skills. The book adeptly navigates through foundational concepts of Kotlin and Android development, making it accessible for newcomers while offering valuable insights and techniques that resonate with more experienced developers.It provides clear explanations and practical examples for beginners that demystify core principles. Intermediate developers will appreciate its deeper dives into advanced topics, which are crucial for scaling up applications effectively.The book's strength lies in its structured approach, combining theoretical knowledge with hands-on exercises and real-world scenarios. This blend accelerates learning and cultivates a deeper understanding of best practices and industry standards in Android development. Overall, "Thriving in Android Development Using Kotlin" is a recommended read for anyone serious about mastering Kotlin for Android, offering a comprehensive pathway to proficiency in the field.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.