Conversation
There was a problem hiding this comment.
Pull request overview
Updates Android SDK configuration levels to address an Android build issue by aligning the plugin library and the example app to newer API levels.
Changes:
- Bump
compileSdkVersionto 36 for the Android library module. - Bump
compileSdkVersionandtargetSdkVersionto 36 for the example Android app.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| android/build.gradle | Raises library module compileSdkVersion to 36. |
| example/android/app/build.gradle | Raises example app compileSdkVersion and targetSdkVersion to 36. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| android { | ||
| namespace "dev.kaichi.easy_pdf_viewer" | ||
| compileSdkVersion 34 | ||
| compileSdkVersion 36 |
There was a problem hiding this comment.
compileSdkVersion was bumped to 36 while this module still uses Android Gradle Plugin 7.0.0 (see buildscript dependencies). AGP 7.0.x is not compatible with such a high compileSdkVersion and this is likely to introduce/retain build failures for consumers. Please either keep compileSdkVersion at a level supported by AGP 7.0.x, or upgrade the Android toolchain together (AGP + Gradle wrapper + related settings) and document the required SDK/AGP versions.
| compileSdkVersion 36 | |
| compileSdkVersion 31 |
No description provided.