Recently I started to venture into Android Studio, and one of the projects I'm working on requires a barcode reader, and a great solution I found was the ZXing library.
However, the following doubts arose:
To use this library I used the following commands:
compile 'com.google.zxing:core:3.2.1'
compile 'com.journeyapps:zxing-android-embedded:3.2.0@aar'
If the owner removes this library, will the next build of the application no longer have this library?
If not, would you have any way to work with it local / offline?