반응형
Notice
Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Flavors
- 워치
- BottomSheetDialog
- Java8
- ActivityResult-API
- Kotlin
- gradle
- OZViewer
- mosquitto
- git
- JNI
- socket.io
- ozd
- Android
- socket-server
- AWS
- 오즈뷰어
- NoSuchMethodError
- firebase-database
- Galaxy Watch
- hung-up
- Dva
- firebase-storage
- google-login
- cloud-firestore
- mqtt
- TIZEN
- git-push
- Firebase
- socket-client
Archives
- Today
- Total
목록NoSuchMethodError (1)
Hyeyeon blog
[Android] java.lang.NoSuchMethodError: No static method metafactory
자바 호환성에 대한 명시가 없으면 아래와 같은 오류가 발생한다. java.lang.NoSuchMethodError: No static method metafactory build.gradle (app)에 Java1.8에 대한 내용을 추가하면 해결된다. android { compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = "1.8" } }
개발/Android
2020. 11. 27. 18:13