| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- Java
- retrofit
- BindingAdapter
- EditText
- Compose
- Registering an InstanceCreator with Gson for this type may fix this problem
- Framework
- Jetpack
- xcframework
- Chat GPT
- ndkVersion
- defaultconfig
- gradle
- IOS
- 3rd part
- Andorid
- Kotlin
- DispatchQueue
- arm-linux-androideabi
- Swift
- VM arguments
- 3rd framework
- buildconfigfield
- AOS
- data binding
- NDK
- mac
- Eclipse
- Android
- boot
Archives
- Today
- Total
grape
[android] DataBinderMapperImpl.java:9: error: cannot find symbol 본문
dev/aos
[android] DataBinderMapperImpl.java:9: error: cannot find symbol
grapelab 2023. 12. 11. 18:15 private var _value = MutableLiveData<String>()
val value: LiveData<String> get() = _value
@={viewmodel.value}
solution
var value = MutableLiveData()
@={viewmodel.value}
or
private var _value = MutableLiveData<T>()
val value: LiveData<T> get() = _value
private var value = MutableLiveData()
@={viewmodel.value.member}
Sample/app/build/generated/ap_generated_sources/debug/out/com/test/testapp/DataBinderMapperImpl.java:9: error: cannot find symbol
import com.test.testapp.databinding.ActivitySampleBindingImpl;
^
symbol: class ActivitySampleBindingImpl
location: package com.test.testapp.databinding
'dev > aos' 카테고리의 다른 글
| [android]kotlin kdoc(java doc 대체) (0) | 2023.12.11 |
|---|---|
| [android] jetpack room gradle setting (0) | 2023.12.11 |
| [android] Duplicate class kotlin.collections.jdk8.CollectionsJDK8Kt found in modules by implementation version (1) | 2023.12.08 |
| [android][kotlin] viewmodel binding implementation (1) | 2023.12.08 |
| [android]android studio - issue module not specified (0) | 2023.12.08 |