jitpack.io icon indicating copy to clipboard operation
jitpack.io copied to clipboard

Android-Image-Cropper/1.1.1 build

Open jwilschrey opened this issue 1 year ago • 1 comments

Please provide:

  • Link to build log from https://jitpack.io https://www.jitpack.io/com/github/CanHub/Android-Image-Cropper/1.1.1/build.log

  • Does the project build on your machine with the same commands (e.g. ./gradlew install) ? nop, I clone the project from scratch

  • What error are you seeing?

In the build processs:

  • What went wrong: Could not determine the dependencies of task ':expo-image-picker:compileDebugAidl'.

Could not resolve all task dependencies for configuration ':expo-image-picker:debugCompileClasspath'. Could not find com.github.CanHub:Android-Image-Cropper:1.1.1. Required by: project :expo-image-picker

I can't update the 'expo-image-picker' module because the project is very old and would break many references.

Thank you!!!!

jwilschrey avatar Aug 07 '24 19:08 jwilschrey

+1, please help @jitpack-io 🙏

janithl avatar Aug 27 '24 20:08 janithl

+1

DmitryUgryumov avatar Aug 29 '24 12:08 DmitryUgryumov

I fixed it by using the last commit of the version 1.1.1 and patch the expo-image-picker.

implementation "com.github.CanHub:Android-Image-Cropper:e81a7d8eb1d"

pp-aaronjiang avatar Sep 08 '24 20:09 pp-aaronjiang

This issue is stale because it has been open for 30 days with no activity.

github-actions[bot] avatar Nov 02 '24 01:11 github-actions[bot]

This issue was closed because it has been inactive for 14 days since being marked as stale.

github-actions[bot] avatar Nov 16 '24 02:11 github-actions[bot]

I fixed it by using the last commit of the version 1.1.1 and patch the expo-image-picker.

implementation "com.github.CanHub:Android-Image-Cropper:e81a7d8eb1d"

For some reason the build failed today with

[RUN_GRADLEW] FAILURE: Build failed with an exception.
[RUN_GRADLEW] * What went wrong:
[RUN_GRADLEW] Execution failed for task ':app:mergeReleaseAssets'.
[RUN_GRADLEW] > Could not resolve all files for configuration ':app:releaseRuntimeClasspath'.
[RUN_GRADLEW]    > Failed to transform Android-Image-Cropper-e81a7d8eb1d.aar (com.github.CanHub:Android-Image-Cropper:e81a7d8eb1d) to match attributes {artifactType=android-assets, org.gradle.category=library, org.gradle.libraryelements=jar, org.gradle.status=release, org.gradle.usage=java-runtime}.
[RUN_GRADLEW]       > Could not find Android-Image-Cropper-e81a7d8eb1d.aar (com.github.CanHub:Android-Image-Cropper:e81a7d8eb1d).
[RUN_GRADLEW]         Searched in the following locations:
[RUN_GRADLEW]             https://www.jitpack.io/com/github/CanHub/Android-Image-Cropper/e81a7d8eb1d/Android-Image-Cropper-e81a7d8eb1d.aar

It got fixed by using lowercase letters instead, i.e.

implementation "com.github.CanHub:android-image-cropper:e81a7d8eb1d"

seltsamonkel avatar Feb 03 '25 08:02 seltsamonkel