android-build-an-app-architecture-components
android-build-an-app-architecture-components copied to clipboard
in step 14 when you're about to go through the steps, the first point says: > Make new doa command for a list of forecasts after a date I think...
There is a typo in https://codelabs.developers.google.com/codelabs/build-app-with-arch-components/index.html?index=..%2F..%2Findex#11: > The WeatherDao returns the data you want and you could have the DetailActivityViewModel communicate directly with the **WeahterDao**. But that defeats the whole...
This pertains to the lesson text and not the code (code compiles and runs just fine). Near the end of the lesson for [Step 11](https://codelabs.developers.google.com/codelabs/build-app-with-arch-components/#12), after observing the logs. "2....
Make the ListViewWeatherEntry class => Make the ListWeatherEntry class Also: I'm not sure, but should "Select only the rows you need" be "Select only the columns you need"?
In [Step 5](https://codelabs.developers.google.com/codelabs/build-app-with-arch-components/index.html?index=..%2F..%2Findex#4) towards the end there's the following snippet: ``` allprojects { repositories { jcenter() maven { url 'https://maven.google.com' } } } ``` but this repository [build.gradle](https://github.com/googlecodelabs/android-build-an-app-architecture-components/blob/arch-training-steps/build.gradle#L5) uses the...