Fixed
Status Update
Comments
il...@google.com <il...@google.com>
ap...@google.com <ap...@google.com> #2
Actually, the second part of that (@font/some_other_font not being resolved) doesn't seem to be the case after re-opening the project. The main issue (@app_font not being resolved by the IDE in layout files despite working correctly at build/run time) is still there however
na...@google.com <na...@google.com> #3
Thank you for your feedback. Team may reach out for more feedback in reproducing or triaging this issue.
Description
Build: AI-212.5712.43.2112.8815526, 202207101541,
AI-212.5712.43.2112.8815526, JRE 11.0.12+0-b1504.28-7817840x64 JetBrains s.r.o., OS Mac OS X(x86_64) v11.6.8, screens 2560.0x1440.0
AS: Chipmunk | 2021.2.1 Patch 2; Kotlin plugin: 212-1.7.10-release-333-AS5457.46; Android Gradle Plugin: 7.2.2; Gradle: 7.3.3; Gradle JDK: version 11.0.12; NDK: from local.properties: (not specified), latest from SDK: (not found); LLDB: pinned revision 3.1 not found, latest from SDK: (package not found); CMake: from local.properties: (not specified), latest from SDK: (not found), from PATH: (not found)
========
Description:
Function
addSource(LiveData<S> source, Observer<? super S> onChanged)
inandroidx.lifecycle.MediatorLiveData<T>
has a typo in its comments.Currently says:
"Starts to listen the given source LiveData,"
Expected:
"Starts to listen to the given source LiveData,"
============ Copy/paste from IDE:
androidx.lifecycle.MediatorLiveData<T> @MainThread public <S> void addSource( @NonNull androidx.lifecycle.LiveData<S> source, @NonNull androidx.lifecycle.Observer<? super S> onChanged)
Starts to listen the given source LiveData, onChanged observer will be called when source value was changed. onChanged callback will be called only when this MediatorLiveData is active. If the given LiveData is already added as a source but with a different Observer, IllegalArgumentException will be thrown.
Params: source – the LiveData to listen to onChanged – The observer that will receive the events Type parameters: <S> – The type of data hold by source LiveData Gradle: androidx.lifecycle:lifecycle-livedata:2.5.1@aar