You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sentry-kotlin-multiplatform-gradle-plugin/src/main/java/io/sentry/kotlin/multiplatform/gradle/SourceSetAutoInstallExtension.kt
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
packageio.sentry.kotlin.multiplatform.gradle
2
2
3
+
importio.sentry.BuildConfig
3
4
importorg.gradle.api.Project
4
5
importorg.gradle.api.provider.Property
5
6
importjavax.inject.Inject
@@ -19,10 +20,10 @@ abstract class SourceSetAutoInstallExtension @Inject constructor(project: Projec
19
20
/**
20
21
* Overrides the default Sentry Kotlin Multiplatform SDK dependency version.
21
22
*
22
-
* Defaults to the latest version of the Sentry Kotlin Multiplatform SDK.
23
+
* Defaults to the version of this plugin which is synchronized with the KMP SDK version.
23
24
*/
24
25
val sentryKmpVersion:Property<String> =
25
26
objects
26
27
.property(String::class.java)
27
-
.convention("latest.release") // Replace with the actual default version
Copy file name to clipboardExpand all lines: sentry-kotlin-multiplatform-gradle-plugin/src/test/java/io/sentry/kotlin/multiplatform/gradle/SentryPluginTest.kt
0 commit comments