无法解析 com.stripe:stripe-android:20.12.+。在颤振项目中

Har*_*rma 6 android stripe-payments flutter

早些时候我的项目运行时没有错误,但今天我收到以下错误。如果有人可以帮助解决这个问题,我将不胜感激。

注意-我没有在我的应用程序中使用jCenter,支付sdk flutter_stripe使用jCenter

FAILURE: Build failed with an exception.

    * What went wrong:
    Execution failed for task ':app:checkDebugAarMetadata'.
    > Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
       > Could not resolve com.stripe:stripe-android:20.12.+.
         Required by:
             project :app > project :stripe_android
          > Failed to list versions for com.stripe:stripe-android.
             > Unable to load Maven meta-data from https://jcenter.bintray.com/com/stripe/stripe-android/maven-metadata.xml.
                > Could not HEAD 'https://jcenter.bintray.com/com/stripe/stripe-android/maven-metadata.xml'.
                   > Read timed out
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 1m 47s
Exception: Gradle task assembleDebug failed with exit code 1
Run Code Online (Sandbox Code Playgroud)

Har*_*rma 4

Here is a link to a solution in the flutter_stripe issue list

You need to add the following line inside app level build.gradle file:

constraints { implementation('com.stripe:stripe-android') { version { strictly '20.11.0' } } }
constraints { implementation('com.stripe:financial-connections') { version { strictly '20.11.0' } } }
Run Code Online (Sandbox Code Playgroud)