Open prince02765 opened 2 years ago
thanks ... I was getting error when adding <com.github.barteksc.pdfviewer.PDFView android:id="@+id/pdfView" android:layout_width="match_parent" android:layout_height="match_parent"/> to layout..... = Class referenced in the layout file, com.github.barteksc.pdfviewer.PDFView, was not found in the project or the libraries
and then I added gradlePluginPortal() ..... like you said.... and error is gone
Thanks!! It worked...
its not working giving me this error
Duplicate class android.support.v4.app.INotificationSideChannel found in modules core-1.8.0-runtime (androidx.core:core:1.8.0) and support-compat-25.3.1-runtime (com.android.support:support-compat:25.3.1)
thanks ... I was getting error when adding
to layout..... = Class referenced in the layout file, com.github.barteksc.pdfviewer.PDFView, was not found in the project or the libraries and then I added gradlePluginPortal() ..... like you said.... and error is gone
Thanks. It worked.
i have added gradlePluginPortal()...... but the problem is same Cannot resolve class com.github.barteksc.pdfviewer.PDFView
use this
implementation 'com.github.mhiew:android-pdf-viewer:3.2.0-beta.3'
thank you i had same issue
hello i got the solution use this dependency
implementation 'com.github.mhiew:android-pdf-viewer:3.2.0-beta.3'
thank you i had same issue
use this one, this is available for mavenCentral
implementation 'com.github.mhiew:android-pdf-viewer:3.2.0-beta.3'
No solution is working , is there any other way ? I have to run the old project
implementation 'com.github.mhiew:android-pdf-viewer:3.2.0-beta.3' thnks this is work in my pc tnks you so much. 😊👌✔
Simply add this line into the build.gradle(app level)
implementation 'com.github.barteksc:android-pdf-viewer:2.8.2'
If you have android studio bumblebee or android studio arctic fox then,
add gradlePluginPortal() into settings.gradle file
dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() gradlePluginPortal() } }