We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
[RUN_GRADLEW] Could not determine the dependencies of task ':app:processDebugResources'. [RUN_GRADLEW] > Could not resolve all task dependencies for configuration ':app:debugRuntimeClasspath'. [RUN_GRADLEW] > Could not resolve com.fingerprint.android:pro:2.2.3. [RUN_GRADLEW] Required by: [RUN_GRADLEW] project :app > project :fingerprintjs_fingerprintjs-pro-react-native [RUN_GRADLEW] > Could not resolve com.fingerprint.android:pro:2.2.3. [RUN_GRADLEW] > Could not get resource 'https://www.jitpack.io/com/fingerprint/android/pro/2.2.3/pro-2.2.3.pom'. [RUN_GRADLEW] > Could not HEAD 'https://www.jitpack.io/com/fingerprint/android/pro/2.2.3/pro-2.2.3.pom'. Received status code 401 from server: Unauthorized [RUN_GRADLEW] > Could not resolve com.fingerprint.android:pro:2.2.3. [RUN_GRADLEW] > Could not get resource 'https://www.jitpack.io/com/fingerprint/android/pro/2.2.3/pro-2.2.3.pom'. [RUN_GRADLEW] > Could not HEAD 'https://www.jitpack.io/com/fingerprint/android/pro/2.2.3/pro-2.2.3.pom'. Received status code 401 from server: Unauthorized
Unable to resolve jitpack, any ideas? Same thing on either of the newest versions
The text was updated successfully, but these errors were encountered:
Hey all, this was due to not having a gradle config that worked with expo, here's a config plugin for any Expo users that solves this issue.
const { withProjectBuildGradle } = require('@expo/config-plugins'); function addFingerprintRepository(config) { return withProjectBuildGradle(config, (config) => { const fingerprintRepo = 'maven {\n url("https://maven.fpregistry.io/releases")\n}\n'; const jitpackRepo = 'maven {\n url("https://www.jitpack.io")\n}\n'; const regex = /repositories\s?{([\s\S]*?)}/gm; const replacement = `repositories {\n ${fingerprintRepo} ${jitpackRepo}$1}`; config.modResults.contents = config.modResults.contents.replace(regex, replacement); return config; }); } module.exports = addFingerprintRepository;
Sorry, something went wrong.
Hello @mercpls, thank you for sharing this with us. We'll explore if it makes sense to add it to the SDK or at least document it in the official docs.
No branches or pull requests
[RUN_GRADLEW] Could not determine the dependencies of task ':app:processDebugResources'.
[RUN_GRADLEW] > Could not resolve all task dependencies for configuration ':app:debugRuntimeClasspath'.
[RUN_GRADLEW] > Could not resolve com.fingerprint.android:pro:2.2.3.
[RUN_GRADLEW] Required by:
[RUN_GRADLEW] project :app > project :fingerprintjs_fingerprintjs-pro-react-native
[RUN_GRADLEW] > Could not resolve com.fingerprint.android:pro:2.2.3.
[RUN_GRADLEW] > Could not get resource 'https://www.jitpack.io/com/fingerprint/android/pro/2.2.3/pro-2.2.3.pom'.
[RUN_GRADLEW] > Could not HEAD 'https://www.jitpack.io/com/fingerprint/android/pro/2.2.3/pro-2.2.3.pom'. Received status code 401 from server: Unauthorized
[RUN_GRADLEW] > Could not resolve com.fingerprint.android:pro:2.2.3.
[RUN_GRADLEW] > Could not get resource 'https://www.jitpack.io/com/fingerprint/android/pro/2.2.3/pro-2.2.3.pom'.
[RUN_GRADLEW] > Could not HEAD 'https://www.jitpack.io/com/fingerprint/android/pro/2.2.3/pro-2.2.3.pom'. Received status code 401 from server: Unauthorized
Unable to resolve jitpack, any ideas? Same thing on either of the newest versions
The text was updated successfully, but these errors were encountered: