Go to file
surtur 50206b10bd
Update MarsApiService and OverviewViewModel v2
2021-12-14 11:04:53 +01:00
app Update MarsApiService and OverviewViewModel v2 2021-12-14 11:04:53 +01:00
gradle/wrapper initial commit 2021-12-14 10:11:04 +01:00
.gitignore initial commit 2021-12-14 10:11:04 +01:00
README.md initial commit 2021-12-14 10:11:04 +01:00
build.gradle initial commit 2021-12-14 10:11:04 +01:00
gradle.properties initial commit 2021-12-14 10:11:04 +01:00
gradlew initial commit 2021-12-14 10:11:04 +01:00
gradlew.bat initial commit 2021-12-14 10:11:04 +01:00
local.properties initial commit 2021-12-14 10:11:04 +01:00
settings.gradle initial commit 2021-12-14 10:11:04 +01:00

MarsRealEstate - Starter Code

Starter code for Android Kotlin Fundamentals Codelab 8.1 Getting data from the internet

Introduction

MarsRealEstate is a demo app that shows available properties for sale and for rent on Mars. The property data is stored on a Web server as a REST web service. This app demonstrated the use of Retrofit to make REST requests to the web service, Moshi to handle the deserialization of the returned JSON to Kotlin data objects, and Glide to load and cache images by URL.

The app also leverages ViewModel, LiveData, Data Binding with binding adapters, and Navigation with the SafeArgs plugin for parameter passing between fragments.

Pre-requisites

You need to know:

  • How to create and use fragments.
  • How to navigate between fragments, and use safeArgs to pass data between fragments.
  • How to use architecture components including ViewModel, ViewModelProvider.Factory, LiveData, and LiveData transformations.
  • How to use coroutines for long-running tasks.

Getting Started

  1. Download and run the app.

License

Copyright 2019 Google, Inc.

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you 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

http://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.