Closed whevether closed 2 months ago
We'll follow up on this soon.
We'll follow up on this soon.
I have found a solution. Modify the subprojects under the build.gradle file in Android and add the following code
subprojects { afterEvaluate { project -> if (project.plugins.hasPlugin("com.android.application") || project.plugins.hasPlugin("com.android.library")) { project.android { compileSdkVersion 34 buildToolsVersion "34.0.0" } } } project.buildDir = "${rootProject.buildDir}/${project.name}" project.evaluationDependsOn(':app') }
Describe the bug flutter update to 3.24 android build error AAPT: error: resource android:attr/lStar not found.
How to reproduce flutter update to 3.24, Create project, add SDK, and then compile
Steps to reproduce the behavior:
flutter pub add flutter_openim_sdk;
flutter build apk
Expected behavior Can compile normally
Version information
Additional context flutter update document link