This repository was archived by the owner on Dec 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
This repository was archived by the owner on Dec 18, 2024. It is now read-only.
Resolving package failed #4
Copy link
Copy link
Open
Description
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'
}
Metadata
Metadata
Assignees
Labels
No labels