csdcorp / speech_to_text

A Flutter plugin that exposes device specific text to speech recognition capability.
BSD 3-Clause "New" or "Revised" License
351 stars 218 forks source link

Grdale 8 support? #420

Closed sanidhya09 closed 6 months ago

sanidhya09 commented 9 months ago

My project is using gradle 8.0.0, but your library is in gradle 7.5, when can we expect the update?

sowens-csd commented 9 months ago

I usually try to keep in sync with the current version used by new Flutter projects. Looks like Flutter is currently using 7.5? Did you upgrade your Gradle version manually or did Flutter create a new project for you that used Gradle 8?

m-derakhshi commented 9 months ago

@sowens-csd

Failed to query the value of property 'buildFlowServiceProperty'.
> Could not isolate value org.jetbrains.kotlin.gradle.plugin.statistics.BuildFlowService$Parameters_Decorated@6fcb99e7 of type BuildFlowService.Parameters
   > A problem occurred configuring project ':speech_to_text'.
      > Could not create an instance of type com.android.build.api.variant.impl.LibraryVariantBuilderImpl.
         > Namespace not specified. Specify a namespace in the module

i cant create pull request:


    namespace 'com.csdcorp.speech_to_text'
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    kotlinOptions {
        jvmTarget = '1.8'
    }
sowens-csd commented 7 months ago

Sorry, I had misunderstood your request. I thought you were asking for Gradle 8 support but I now see your PR is just setting some compile compatibility options. Those look good. I'll review the PR.