Hello,
In chapter 9 I have some trouble when writing the scope function .apply to the binding in CriminalDetailFragement.kt.
I was able to solve the problem by changing the version in my build.gradle from
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.8.0'
to this:
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'
I understood .apply
is a scope function included in Kotlin Standard Library. But why do I need to downgrade the above implementations to use Kotlin Standard Library in my code??? Any explanation is much appreciated!