Nicholas Farmer
Nicholas Farmer

Reputation: 806

Adding compile decency Koala Android Studio

Unfortunately upgraded to Koala Android studio and Gradle dependency has completely changed and I can not work out how to add a simple dependency like:

compile 'com.github.barteksc:android-pdf-viewer:2.0.3'

Where on earth does this now go? I put it where I would previously, build.gradle.kts (Module app) under the dependencies section...but they have all changed to implementation and 'compile' is not accepted.

Cannot find any clear documentation on this.

Any help please

Upvotes: 0

Views: 268

Answers (1)

Nicholas Farmer
Nicholas Farmer

Reputation: 806

Thank you to @Ken Wolf and @CommonsWare, managed to get the correct implementation syntax

However the issue remained until I changed the implementation url to: 'com.github.mhiew:android-pdf-viewer:3.2.0-beta.3'

Seems barteksc is no longer

Upvotes: 1

Related Questions