googlecodelabs / android-build-an-app-architecture-components

Other
266 stars 133 forks source link

Sunshine with Architecture Components (DEPRECATED)

This Sample is Deprecated

This sample is deprecated and is not actively maintained. For example, the WorkManager library is now the best practice solution for handling scheduled background work.

Instead, please refer to the following samples and training materials:

About

This app is for the Build an App with Architecture Components Codelab.

Starting Classes

Below is a description of the different packages and classes in the starting app code.

data package

Contains all classes related to local and network app data.

data.network package

All classes related to fetching data from the network.

data.database package

All classes related to caching the data locally (it's pretty empty right now).

ui package

All activities and adapters - anything to do with display.

ui.detail package

utilities package

AppExectuors class

This class provides a global executor pool. You can learn more about thread pools here. In short, this class provides an easy and efficient way to run code off of the main thread.

License

All image and audio files (including .png, .jpg, .svg, .mp3, .wav and .ogg) are licensed under the CC-BY-NC license. All other files are licensed under the Apache 2 license. See the LICENSE file for details. Copyright 2017 Google Inc. All rights reserved. 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 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.