Back to project page android-pdfview.
The source code is released under:
GNU General Public License
If you think the Android project android-pdfview listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.vudroid.core; //from www . java 2s.c o m public class VuDroidLibraryLoader { private static boolean alreadyLoaded = false; public static void load() { if (alreadyLoaded) { return; } System.loadLibrary("vudroid"); alreadyLoaded = true; } }