-
Notifications
You must be signed in to change notification settings - Fork 879
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
Could not resolve com.camerakit:camerakit:1.0.0-beta3.10 #643
Comments
Same here |
Please let me know if it works. |
Hi @anurag-oneassist , |
Hi @handirusli how about to solve the import com.jpegkit.Jpeg ? |
@pramahaditamaputra have you tried the import below?
|
Hi @handirusli, thank you so much for your help. this is working fine for me. |
Failed to resolve: com.camerakit:camerakit:v1.0.0-beta3.11 |
Please replace it with this suggested sdk. It will help. |
Hi, just found this issue when updating an older project, our project was using v0.13.5 but that build failed on Jitpack, Build Log Link, I've set the app to use v0.13.4 for now 🤞🏼 hoping there are no issues as a result |
@handirusli |
Does this mean that the mentioned issue is resolved ? |
No the build is still failed on Jitpack for version 0.13.5 so that version is not available to use |
But I am using v1.0.0-beta3.11. So any news for it ? |
Done this, but now I'm getting:
I feel like CameraKit needs to be updated as well for this to work? |
@hemant1109 |
Unfortunately did not find any solution. So I am using the old lib and this lib is not working with the Pipeline. |
unfortunately i dont have the old lib, can you share the old library? both for camerakit and jpegkit? thanks |
Try this.
|
This works for you because you still have the cached version stored in your ~/.gradle/ folder. I can share the old libraries with you, I just don't know if that goes against any licensing rules. |
Yes I got it in the cache dir. let's find another solution/lib to overcome this. |
Reality is, this library is overall no longer being supported. The last release was made back in 2019. I briefly tried downloading the source code myself and building it but without success. There are 2 options here:
You can bundle the old libraries using a local copy (gradle supports that), but that's an interim fix. |
thanks guys, looking forward who can share their cache/save old libraries. I need to build my old app with these libraries. If I ever had one i will put it on lib folder and commit to repostiory |
@koolfreak you can find me on Twitter with the same handle, I'll share the library with you there. |
ok i start following you, me is @cybernetics_net. also can't seem to dm you |
@larcho thanks for sharing...now it works! |
Hi @larcho , @koolfreak , is there any way you could share the files with me too? I started following you both on twitter but i am unable to DM you. Thanks. |
Hi, still getting error on a legacy app! can some one share a solution that anyone in the community can use? |
Hi @larcho , @koolfreak no need for the files anymore. managed to make it work. Thanks anyway. For others to make this work: In build.gradle:
Then download the Source code for jpegkit-v0.1.0
Extract, copy/paste folder jpegkit in the root folder of your project. In build.gradle:
in settings.gradle:
Build and that should be it. Happy coding. |
Considering the huge amount of stars this project has, someone should try to update the library as a whole. My Kotlin is so very rusty though, but I'll give it a shot. |
hi @fwallz, tks for your solution, now I'm facing this error, do you solved it?
|
This is how my build.gradle for jpegkit project looks like:
Basically remove from top:
And everything below:
|
@fwallz just chec my github...thanks for pulling that altogether |
maven {url 'https://maven.aliyun.com/repository/public/'} |
It works for me using pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {url 'https://maven.aliyun.com/repository/public/'}
maven {url 'https://maven.aliyun.com/repository/google/'}
maven {url 'https://maven.aliyun.com/repository/central/'}
maven {url 'https://maven.aliyun.com/repository/gradle-plugin/'}
}
}
rootProject.name = "Project"
include ':app'
Root // Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.4.1' apply false
id 'com.android.library' version '8.4.1' apply false
} Then added the camerakit package in the project plugins {
id 'com.android.application'
}
android {
namespace 'com.company.example'
compileSdk 34
defaultConfig {
applicationId "com.company.example"
minSdk 23
targetSdk 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildFeatures {
mlModelBinding true
}
}
dependencies {
implementation 'com.camerakit:camerakit:1.0.0-beta3.10'
implementation 'com.camerakit:jpegkit:0.1.0'
}
|
I am using this libs in my project and run Bitbucket pipeline. It gives me this error every time from 2 weeks.
Could not resolve com.camerakit:camerakit:1.0.0-beta3.10. > Could not get resource 'https://pay.cards/maven/com/camerakit/camerakit/1.0.0-beta3.10/camerakit-1.0.0-beta3.10.pom'. > Could not GET 'https://pay.cards/maven/com/camerakit/camerakit/1.0.0-beta3.10/camerakit-1.0.0-beta3.10.pom'. > The server may not support the client's requested TLS protocol versions: (TLSv1.2, TLSv1.3). You may need to configure the client to allow other protocols to be used. See: https://docs.gradle.org/7.2/userguide/build_environment.html#gradle_system_properties > Remote host terminated the handshake
Please help.
The text was updated successfully, but these errors were encountered: