diff --git a/plugin/.idea/misc.xml b/plugin/.idea/misc.xml index f5c6d9e..21ff613 100644 --- a/plugin/.idea/misc.xml +++ b/plugin/.idea/misc.xml @@ -1,4 +1,4 @@ - + \ No newline at end of file diff --git a/plugin/gradle.properties b/plugin/gradle.properties index bfb0808..0320f94 100644 --- a/plugin/gradle.properties +++ b/plugin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.snap.daggerbrowser -VERSION_NAME=0.8 +VERSION_NAME=0.81 POM_DESCRIPTION=DaggerBrowser diff --git a/plugin/lib/build.gradle b/plugin/lib/build.gradle index ac23be1..738cb69 100644 --- a/plugin/lib/build.gradle +++ b/plugin/lib/build.gradle @@ -9,8 +9,8 @@ dependencies { implementation "com.squareup.moshi:moshi-adapters:$moshi_version" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" } -sourceCompatibility = "8" -targetCompatibility = "8" +sourceCompatibility = JavaVersion.VERSION_17 +targetCompatibility = JavaVersion.VERSION_17 buildscript { ext.kotlin_version = '2.1.0' ext.dagger_version = '2.56.2' @@ -28,12 +28,12 @@ repositories { } compileKotlin { kotlinOptions { - jvmTarget = "1.8" + jvmTarget = "17" } } compileTestKotlin { kotlinOptions { - jvmTarget = "1.8" + jvmTarget = "17" } }