Notice
Recent Posts
Recent Comments
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 |
Tags
- 1차원 DP
- 2차원 dp
- 99클럽
- @BeforeAll
- @BeforeEach
- @Builder
- @Entity
- @GeneratedValue
- @GenericGenerator
- @NoargsConstructor
- @Query
- @Table
- @Transactional
- Actions
- Amazon EFS
- amazon fsx
- Android Studio
- ANSI SQL
- ApplicationEvent
- assertThat
- async/await
- AVG
- AWS
- Azure
- bind
- builder
- button
- c++
- c++ builder
- c03
Archives
- Today
- Total
기록
[issue] Caused-by-javalangBootstrapMethodError-Exception-from-call-site-4-bootstrap-method 본문
Moblie/Android
[issue] Caused-by-javalangBootstrapMethodError-Exception-from-call-site-4-bootstrap-method
youngyin 2020. 9. 29. 13:00안드로이드 프로젝트 진행중에 LicencesDialog 라이브러리를 사용했다. 그러던 중에 다음과 같은 에러가 발생하였다.
Caused-by-javalangBootstrapMethodError-Exception-from-call-site-4-bootstrap-method
build.gradle(app)파일에 아래의 코드를 추가해주면 정상적으로 빌드된다.
android{
...
compileOptions{
targetCompatibility = "8"
sourceCompatibility = "8"
}
}
'Moblie > Android' 카테고리의 다른 글
androidStudio/Google Map API 사용하기 (0) | 2021.11.28 |
---|---|
androidStudio/localhost 서버 접속하기 (0) | 2021.06.07 |
androidStudio/실제 단말기를 이용하여 실행시키기 (0) | 2021.03.12 |
androidStudio/java/preference:1.1.1 사용하기 (0) | 2020.09.29 |
androidStudio/java/다른 앱으로 사용자 보내기 (0) | 2020.09.07 |
Comments