equationl / paddleocr4android

A Paddle OCR sample for Android by Paddle-Lite from https://github.com/PaddlePaddle/PaddleOCR 对 PaddleOCR 的简单封装,使其能够快速上手使用而不需繁琐的配置。
115 stars 20 forks source link

引入implementation 'com.github.equationl.paddleocr4android:fastdeplyocr:v1.2.5'出错 #16

Closed liudapang000 closed 1 year ago

liudapang000 commented 1 year ago

在运行时报错The minCompileSdk (33) specified in a dependency's AAR metadata (META-INF/com/android/build/gradle/aar-metadata.properties) is greater than this module's compileSdkVersion (android-30). Dependency: androidx.appcompat:appcompat-resources:1.6.1.,上网查了一下是由于我使用的android-30版本与appcompat-resources:1.6.1冲突,需要降级,我把您的库fork一下,修改了build.gradle中的appcompat版本,当我使用与你相同的方法引入时(implementation 'com.github.liudapang000.paddleocr4android:fastdeplyocr:v1.2.5'liudapang000是我的用户名)却提示Could not find com.github.liudapang000.paddleocr4android:fastdeplyocr:v1.2.5.,为什么就无法找到我创建的库,我需要修改什么地方吗?请指导谢谢!

liudapang000 commented 1 year ago

我只是将build.gradle中你的用户名改为我自己的了,请问还有什么地方需要设置或修改的吗?

equationl commented 1 year ago

如果你只是想自己用的话,不需要打包到 jitpack 。

本地引入依赖即可:implementation project(":fastdeployOCR")

如果你想打包到 jitpack,建议先了解一下怎么使用 jitpack:https://docs.jitpack.io/

看你的 jitpack 仓库,你并没有编译,当然会 Could not find

image