Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions rollbar_flutter/example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ if (flutterVersionName == null) {
}

android {
Comment thread
matux marked this conversation as resolved.
compileSdkVersion flutter.compileSdkVersion
// NOTE: compileSdkVersion 34 is required for AGP 7 compatibility.
// When upgrading to SDK 35+, ensure the Android Gradle Plugin is upgraded accordingly.
compileSdkVersion 34

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
Expand All @@ -36,7 +38,9 @@ android {
defaultConfig {
applicationId "com.rollbar.flutter.example"
minSdkVersion 19
Comment thread
matux marked this conversation as resolved.
targetSdkVersion flutter.targetSdkVersion
// NOTE: targetSdkVersion is intentionally pinned for AGP 7 compatibility.
// Update only after verifying compatibility with the Android Gradle Plugin and Flutter tooling.
targetSdkVersion 34
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
Expand Down
Loading