
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
아래와 같은 에러가 납니다.
에러가 나도 앱이 실행은 되고 있긴 하구요..
그리고 가상 디바이스에서 사진은 어떻게 넣을 수 있나요?
사진 앱으로 뭐 이상한 이미지가 떠서 사진찍었더니 한장은 나오긴 나오더라구요..
* 개발환경
1. jdk 버전은 17
2. 안드로이드 스튜디오 버전 android-studio-2024.1.1.12
3. 플러터 버전 flutter_windows_3.24.1-stable
작성한 코드 및 에러 메세지
Your project is configured to compile against Android SDK 34, but the following plugin(s) require to be compiled against a higher Android SDK version:
- flutter_plugin_android_lifecycle compiles against Android SDK 35
Fix this issue by compiling against the highest Android SDK version (they are backward compatible).
Add the following to C:\Project\Remme\thread_app_sample\android\app\build.gradle:
android {
compileSdk = 35
...
}
