Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

When run getting this error for version 4.5.0.4853 #2

Open
palashsethiya opened this issue Dec 13, 2024 · 1 comment
Open

When run getting this error for version 4.5.0.4853 #2

palashsethiya opened this issue Dec 13, 2024 · 1 comment

Comments

@palashsethiya
Copy link

Flutter doctor

Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 3.22.3, on macOS 14.6.1 23G93 darwin-arm64 (Rosetta), locale en-IN)
[✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0)
[✓] Xcode - develop for iOS and macOS (Xcode 16.0)
[✓] Chrome - develop for the web
[✓] Android Studio (version 2024.1)
[✓] VS Code (version 1.96.0)

Getting this when run the application

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 find com.scichart.library:core:4.5.0.4853.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/com/scichart/library/core/4.5.0.4853/core-4.5.0.4853.pom
- https://repo.maven.apache.org/maven2/com/scichart/library/core/4.5.0.4853/core-4.5.0.4853.pom
- https://storage.googleapis.com/download.flutter.io/com/scichart/library/core/4.5.0.4853/core-4.5.0.4853.pom
Required by:
project :app > project :sci_chart
Could not find com.scichart.library:data:4.5.0.4853.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/com/scichart/library/data/4.5.0.4853/data-4.5.0.4853.pom
- https://repo.maven.apache.org/maven2/com/scichart/library/data/4.5.0.4853/data-4.5.0.4853.pom
- https://storage.googleapis.com/download.flutter.io/com/scichart/library/data/4.5.0.4853/data-4.5.0.4853.pom
Required by:
project :app > project :sci_chart
Could not find com.scichart.library:drawing:4.5.0.4853.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/com/scichart/library/drawing/4.5.0.4853/drawing-4.5.0.4853.pom
- https://repo.maven.apache.org/maven2/com/scichart/library/drawing/4.5.0.4853/drawing-4.5.0.4853.pom
- https://storage.googleapis.com/download.flutter.io/com/scichart/library/drawing/4.5.0.4853/drawing-4.5.0.4853.pom
Required by:
project :app > project :sci_chart
Could not find com.scichart.library:charting:4.5.0.4853.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/com/scichart/library/charting/4.5.0.4853/charting-4.5.0.4853.pom
- https://repo.maven.apache.org/maven2/com/scichart/library/charting/4.5.0.4853/charting-4.5.0.4853.pom
- https://storage.googleapis.com/download.flutter.io/com/scichart/library/charting/4.5.0.4853/charting-4.5.0.4853.pom
Required by:
project :app > project :sci_chart
Could not find com.scichart.library:charting3d:4.5.0.4853.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/com/scichart/library/charting3d/4.5.0.4853/charting3d-4.5.0.4853.pom
- https://repo.maven.apache.org/maven2/com/scichart/library/charting3d/4.5.0.4853/charting3d-4.5.0.4853.pom
- https://storage.googleapis.com/download.flutter.io/com/scichart/library/charting3d/4.5.0.4853/charting3d-4.5.0.4853.pom
Required by:
project :app > project :sci_chart
Could not find com.scichart.library:extensions:4.5.0.4853.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/com/scichart/library/extensions/4.5.0.4853/extensions-4.5.0.4853.pom
- https://repo.maven.apache.org/maven2/com/scichart/library/extensions/4.5.0.4853/extensions-4.5.0.4853.pom
- https://storage.googleapis.com/download.flutter.io/com/scichart/library/extensions/4.5.0.4853/extensions-4.5.0.4853.pom
Required by:
project :app > project :sci_chart
Could not find com.scichart.library:extensions3d:4.5.0.4853.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/com/scichart/library/extensions3d/4.5.0.4853/extensions3d-4.5.0.4853.pom
- https://repo.maven.apache.org/maven2/com/scichart/library/extensions3d/4.5.0.4853/extensions3d-4.5.0.4853.pom
- https://storage.googleapis.com/download.flutter.io/com/scichart/library/extensions3d/4.5.0.4853/extensions3d-4.5.0.4853.pom
Required by:
project :app > project :sci_chart

  • 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 13s
Error: Gradle task assembleDebug failed with exit code 1

@maulik-cn
Copy link
Collaborator

Open the "build.gradle" file for the android project and declare a new Maven repository in the "repositories" node. Use the URL from below:

repositories {
    google()
    mavenCentral()

    // Declare a Maven repository for SciChart
    maven { url 'https://www.myget.org/F/abtsoftware-bleeding-edge/maven' }
    maven { url 'https://www.myget.org/F/abtsoftware/maven' }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants