Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Resolving package failed #4

Open
jaredanderton opened this issue Jun 22, 2023 · 0 comments
Open

Resolving package failed #4

jaredanderton opened this issue Jun 22, 2023 · 0 comments

Comments

@jaredanderton
Copy link

jaredanderton commented Jun 22, 2023

The package used to be resolvable (working as of 6/21/23). However, today (6/22/23), my build system is unable to resolve the package:

* What went wrong:
Execution failed for task ':app:mergeBetaReleaseArtProfile'.
> Could not resolve all files for configuration ':app:betaReleaseRuntimeClasspath'.
   > Could not find any matches for com.finicity.connect:connect-sdk:+ as no versions of com.finicity.connect:connect-sdk are available.
     Searched in the following locations:
       - https://dl.google.com/dl/android/maven2/com/finicity/connect/connect-sdk/maven-metadata.xml
       - https://repo.maven.apache.org/maven2/com/finicity/connect/connect-sdk/maven-metadata.xml
       - https://storage.googleapis.com/download.flutter.io/com/finicity/connect/connect-sdk/maven-metadata.xml
       - https://software.mobile.pendo.io/artifactory/androidx-release/com/finicity/connect/connect-sdk/maven-metadata.xml
       - https://jcenter.bintray.com/com/finicity/connect/connect-sdk/maven-metadata.xml
       - file:/root/project/android/libs/
       - https://zendesk.jfrog.io/zendesk/repo/com/finicity/connect/connect-sdk/maven-metadata.xml

build.gradle:

group 'com.lendio.flutter_smb_service_finicity'
version '1.0-SNAPSHOT'

buildscript {
    ext.kotlin_version = '1.6.10'
    repositories {
        google()
        mavenCentral()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:7.1.2'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

rootProject.allprojects {
    repositories {
        google()
        mavenCentral()
        jcenter()
    }
}

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
    compileSdkVersion 31

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    kotlinOptions {
        jvmTarget = '1.8'
    }

    sourceSets {
        main.java.srcDirs += 'src/main/kotlin'
    }

    defaultConfig {
        minSdkVersion 21
    }
}

dependencies {
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    api 'com.finicity.connect:connect-sdk:+'
    api 'com.google.code.gson:gson:2.9.1'
}
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant