We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0006698 commit 3a43905Copy full SHA for 3a43905
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Changelog
2
3
+## Unreleased
4
+
5
+### Fixes
6
7
+- Adds a namespace for compatibility with AGP 8.0. ([#1427](https://github.com/getsentry/sentry-dart/pull/1427))
8
9
## 7.5.2
10
11
### Fixes
flutter/android/build.gradle
@@ -24,6 +24,11 @@ apply plugin: 'kotlin-android'
24
android {
25
compileSdkVersion 33
26
27
+ // Conditional for compatibility with AGP <4.2.
28
+ if (project.android.hasProperty("namespace")) {
29
+ namespace 'io.sentry.flutter'
30
+ }
31
32
sourceSets {
33
main.java.srcDirs += 'src/main/kotlin'
34
}
0 commit comments