android-build-an-app-architecture-components icon indicating copy to clipboard operation
android-build-an-app-architecture-components copied to clipboard

Results 35 android-build-an-app-architecture-components issues
Sort by recently updated
recently updated
newest added

This is what I get when I Try to Build the project ``` Manifest merger failed : Attribute meta-data#android.support.VERSION@value value=(26.0.1) from [com.android.support:preference-v7:26.0.1] AndroidManifest.xml:25:13-35 is also present at [com.android.support:support-core-utils:26.1.0] AndroidManifest.xml:28:13-35 value=(26.1.0)....

Check out my fork [here](https://github.com/LemuelHui/android-build-an-app-architecture-components). I have changed nothing besides updating all the Gradle and dependencies versions.

targey SDK version 27 replaced `compile` with `implementation`

Since the January 22, 2018 release of Architecture components, _LifecycleActivity_ is deprecated. The `build.gradle` file can be updated to: ``` implementation "android.arch.lifecycle:runtime:1.1.1" implementation "android.arch.lifecycle:extensions:1.1.1" annotationProcessor "android.arch.lifecycle:compiler:1.1.1" ``` and at point...

On step 9, you are including the following dependencies for lifecycle: compile "android.arch.lifecycle:runtime:1.0.0-alpha9" compile "android.arch.lifecycle:extensions:1.0.0-alpha9" annotationProcessor "android.arch.lifecycle:compiler:1.0.0-alpha9" but with this libreries the postValue() make my application crash, instead of this...

https://codelabs.developers.google.com/codelabs/build-app-with-arch-components/index.html Doesn't compile.

"`WeatherNetworkDatasource` is created via` InjectorUtilis`..." Should be `InjectorUtils`

Needed to add this to the bottom of the module app build.gradle Android Studio 3.1.2 ``` configurations.all { resolutionStrategy.eachDependency { DependencyResolveDetails details -> def requested = details.requested if (requested.group ==...

**Hopefully this code lab should have an another branch for kotlin**