Вывод

В связи с нехваткой времени на полномасштабное изучение поставленных тем и написанием статей - цель отменена. И знаете... Она отменена не зря. Ведь у каждого из нас есть много целей и желаний, но даже они могут иметь разную категорию важности по отношению к друг другу.
Дневник цели

Столько статей перерыл, столько информации накопал, но суть везде одна и та же - её очень чётко описывает прикреплённая картинка.


Сегодня решил закрыть репозиторий, ибо планы на приложение немного поменялись. Все описание работ буду вести тут, но исходники будут закрытыми. Тем не менее основная часть, касающееся изучения и применения на практике новых технологий будет тут.

На самом деле Udacity очень подходит для закрепления материала и, как справочник с более разжёванным материалом. Если документация кажется сухой - то по каждой теме можно найти обсуждение на udacity.

Решил пройтись по бесплатным курсам Udacity. Хочу сказать, что многие вещи очень полезны, хотя и человеку с опытом разработки это лишь повторение. Закончил уже 2 курса. Занимает много времени.

Запись к этапу «Сдача сертификационного экзамена Android Developer на udacity»
Олег31 авг. 2016, 05:15Получил приглашение на экзамен и, как выяснилось под конец, за него надо платить. Чтож. Пока не располагаю свободными средствами, чтобы покупать себе сертификат, который кстати можно купить во многих местах так.

Запись к этапу «Сдача сертификационного экзамена Android Developer на udacity»
Олег22 авг. 2016, 08:46Прохожу курсы для подготовки к экзамену. Решил начать с самого начала. По сути - материал весь знаю, но научиться манере давать материал таким образом всё же стоит =)

Немного отстал от дел, потому что ездил в путешествие. Ну теперь буду догонять. Тем более, что прочтение статьи, как на русском, так и на английском языках просто зашкаливает. Уже около 200 на medium только.

Запись к этапу «Сдача сертификационного экзамена Android Developer на udacity»
Олег3 авг. 2016, 14:57Статья номер 2 по MVP будет ооочень длинной))
А пока, вот краткий перечень тем на 48 часов экзамен:
Testing and Debugging
Writing tests to verify that the application's logic and user interface are performing as expected, and executing those tests using the developer tools. Candidates should be able to analyze application crashes, and find common bugs such as layout errors and memory leaks. This includes working with the debuggers to step through application code and verify expected behavior
Write and execute a local JVM unit test
Write and execute a device UI test
Given a problem description, replicate the failure
Use the system log to output debug information
Debug and fix an application crash (uncaught exception)
Debug and fix an activity lifecycle issue
Debug and fix an issue binding data to views
Application User Interface (UI) and User Experience (UX)
Implementation of the visual and navigational components of an application's design. This includes constructing layouts–using both XML and Java code–that consist of the standard framework UI elements as well as custom views. Candidates should have a working knowledge of using view styles and theme attributes to apply a consistent look and feel across an entire application. Understanding of how to include features that expand the application's audience through accessibility and localization may also be required.
Mock up the main screens and navigation flow of the application
Describe interactions between UI, background task, and data persistence
Construct a layout using XML or Java code
Create a custom view class and add it to a layout
Implement a custom application theme
Apply a custom style to a group of common widgets
Define a RecyclerView item list
Bind local data to a RecyclerView list
Implement menu-based or drawer navigation
Localize the application's UI text into one other language
Apply content descriptions to views for accessibility
Add accessibility hooks to a custom view
Understanding of Android's top-level application components (Activity, Service, Broadcast Receiver, Content Provider) and the lifecycle associated with each one. Candidates should be able to describe the types of application logic that would be best suited for each component, and whether that component is executing in the foreground or in the background. This includes strategies for determining how and when to execute background work.
Describe an application's key functional and nonfunctional requirements
Create an Activity that displays a layout resource
Fetch local data from disk using a Loader on a background thread
Propagate data changes through a Loader to the UI
Schedule a time-sensitive task using alarms
Schedule a background task using JobScheduler
Execute a background task inside of a Service
Implement non-standard task stack navigation (deep links)
Integrate code from an external support library
Determining appropriate use cases for local persisted data, and designing solutions to implement data storage using files, preferences, and databases. This includes implementing strategies for bundling static data with applications, caching data from remote sources, and managing user-generated private data. Candidates should also be able to describe platform features that allow applications to store data securely and share that data with other applications in a secure manner.
Define a database schema; include tables, fields, and indices
Create an application-private database file
Construct database queries returning single results
Construct database queries returning multiple results
Insert new items into a database
Update or delete existing items in a database
Expose a database to other applications via Content Provider
Read and parse raw resources or asset files
Create persistent preference data from user input
Toggle application logic based on preference values
Extending applications to integrate with interfaces outside the core application experience through notifications and app widgets. This includes displaying information to the user through these elements and keeping that information up to date. Candidates should also understand how to provide proper navigation from these external interfaces into the application's main task, including appropriate handling of deep links.
Create an app widget that displays on the device home screen
Implement a task to update the app widget periodically
Create and display a notification to the user

На днях читал по IoC контейнерам. На самом деле есть 2 вещи, которые надо понять и о которых я не знал.
1) Можно применять простой и легковесный IoC контейнер для вьюх - ButterKnife
2) Можно применять более сложный, но полноценный IoC контейнер для всего - Dagger 2.
Roboguice не рассматривается. Причина этому проста - производительность.
Вот в этом блоге приведено сравнение библиотек - Сравнение производительности DI библиотек