diff --git a/CHANGELOG.md b/CHANGELOG.md index 89874508d0..771b13a760 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ ### Dependencies +- Bump Android SDK from v7.11.0 to v7.12.0 ([#2173](https://github.com/getsentry/sentry-dart/pull/2173)) + - [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7120) + - [diff](https://github.com/getsentry/sentry-java/compare/7.11.0...7.12.0) + - updates AGP to v7.4.2 + - updates Kotlin to v1.8.0 - Bump Cocoa SDK from v8.30.1 to v8.31.1 ([#2174](https://github.com/getsentry/sentry-dart/pull/2174)) - [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8311) - [diff](https://github.com/getsentry/sentry-cocoa/compare/8.30.1...8.31.1) diff --git a/flutter/android/build.gradle b/flutter/android/build.gradle index 3242dddd64..d2d07645aa 100644 --- a/flutter/android/build.gradle +++ b/flutter/android/build.gradle @@ -1,12 +1,12 @@ buildscript { - ext.kotlin_version = '1.6.21' + ext.kotlin_version = '1.8.0' repositories { google() mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:7.2.2' + classpath 'com.android.tools.build:gradle:7.4.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } @@ -60,7 +60,7 @@ android { } dependencies { - api 'io.sentry:sentry-android:7.11.0' + api 'io.sentry:sentry-android:7.12.0' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" // Required -- JUnit 4 framework diff --git a/flutter/android/gradle.properties b/flutter/android/gradle.properties index 8bd86f6805..d9cf55df7c 100644 --- a/flutter/android/gradle.properties +++ b/flutter/android/gradle.properties @@ -1 +1,2 @@ org.gradle.jvmargs=-Xmx1536M +android.useAndroidX=true diff --git a/flutter/example/android/build.gradle b/flutter/example/android/build.gradle index 693111bbb3..741fa44529 100644 --- a/flutter/example/android/build.gradle +++ b/flutter/example/android/build.gradle @@ -1,5 +1,5 @@ buildscript { - ext.kotlin_version = '1.6.21' + ext.kotlin_version = '1.8.0' repositories { google() @@ -8,7 +8,7 @@ buildscript { dependencies { classpath 'io.sentry:sentry-android-gradle-plugin:4.5.0' - classpath 'com.android.tools.build:gradle:7.2.2' + classpath 'com.android.tools.build:gradle:7.4.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'io.github.howardpang:androidNativeBundle:1.1.3' } diff --git a/min_version_test/android/build.gradle b/min_version_test/android/build.gradle index 70ef661422..e269d91443 100644 --- a/min_version_test/android/build.gradle +++ b/min_version_test/android/build.gradle @@ -1,12 +1,12 @@ buildscript { - ext.kotlin_version = '1.6.21' + ext.kotlin_version = '1.8.0' repositories { google() mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:7.2.2' + classpath 'com.android.tools.build:gradle:7.4.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } }