mavenCentral()
See original GitHub issueLibrary is available in jcenter repository, probably it’ll be in Maven Central soon.
Do you know approximately when the library will be available in Maven? jCenter() to be shut down in 2022.
###################### Update ##################
I have found here: https://search.maven.org/search?q=a:android-pdf-viewer a mavenCentral-Version named com.github.mhiew.
in android gradle:
implementation 'com.github.mhiew:android-pdf-viewer:3.2.0-beta.1'
works without problems and without jCenter()
Issue Analytics
- State:
- Created 2 years ago
- Reactions:22
- Comments:5
Top Results From Across the Web
Difference among mavenCentral(), jCenter() and mavenLocal()?
The mavenLocal() alias means that dependencies are fetched from the local ... jcenter() and mavenCentral() is a repository for the Gradle ...
Read more >Declaring repositories - Gradle User Manual
To declare the Maven Central repository for your build add this to your script: Example 1. ... repositories { mavenCentral() maven { url ......
Read more >Maven Central Repository Search
Official search by the maintainers of Maven Central Repository. Apache Maven Resources | About Sonatype | Privacy Policy | Terms Of Service |...
Read more >Upgrade Android Project from JCenter to Maven Central
Open your root build.gradle; Find lines that say jcenter() and add mavenCentral() before each of them (Make sure to add mavenCenteral() in ...
Read more >Central - Maven Repository
URL, https://repo1.maven.org/maven2/. Storage, 29585.7 GBs. Packages, 10,213,708 indexed packages. Published Packages by Year. 2022. 2,134,254. 2021.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I solved this by adding 2 lines inside gradle.properties file
android.useAndroidX=true android.enableJetifier=true
Same error got it solved by adding both lines, thank you. But if possible what these lines do