mirror of
https://github.com/kiwix/java-libkiwix.git
synced 2025-09-09 15:19:32 -04:00
Rename kiwixlib to libkiwix
This commit is contained in:
parent
4aa8eeedfb
commit
763731a5e1
@ -19,7 +19,7 @@
|
||||
|
||||
|
||||
#include <jni.h>
|
||||
#include "org_kiwix_kiwixlib_Book.h"
|
||||
#include "org_kiwix_libkiwix_Book.h"
|
||||
|
||||
#include "utils.h"
|
||||
#include "book.h"
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
|
||||
#include <jni.h>
|
||||
#include "org_kiwix_kiwixlib_Filter.h"
|
||||
#include "org_kiwix_libkiwix_Filter.h"
|
||||
|
||||
#include "library.h"
|
||||
#include "utils.h"
|
||||
|
@ -19,7 +19,7 @@
|
||||
*/
|
||||
|
||||
#include <jni.h>
|
||||
#include "org_kiwix_kiwixlib_JNIICU.h"
|
||||
#include "org_kiwix_libkiwix_JNIICU.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
@ -20,7 +20,7 @@
|
||||
|
||||
|
||||
#include <jni.h>
|
||||
#include "org_kiwix_kiwixlib_JNIKiwixServer.h"
|
||||
#include "org_kiwix_libkiwix_JNIKiwixServer.h"
|
||||
|
||||
#include "tools/base64.h"
|
||||
#include "server.h"
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
|
||||
#include <jni.h>
|
||||
#include "org_kiwix_kiwixlib_Library.h"
|
||||
#include "org_kiwix_libkiwix_Library.h"
|
||||
|
||||
#include "library.h"
|
||||
#include "reader.h"
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
|
||||
#include <jni.h>
|
||||
#include "org_kiwix_kiwixlib_Manager.h"
|
||||
#include "org_kiwix_libkiwix_Manager.h"
|
||||
|
||||
#include "manager.h"
|
||||
#include "utils.h"
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
package org.kiwix.kiwixlib;
|
||||
package org.kiwix.libkiwix;
|
||||
|
||||
public class Book
|
||||
{
|
@ -17,7 +17,7 @@
|
||||
* MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
package org.kiwix.kiwixlib;
|
||||
package org.kiwix.libkiwix;
|
||||
|
||||
public class DirectAccessInfo
|
||||
{
|
@ -17,7 +17,7 @@
|
||||
* MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
package org.kiwix.kiwixlib;
|
||||
package org.kiwix.libkiwix;
|
||||
|
||||
public class Filter
|
||||
{
|
@ -18,7 +18,7 @@
|
||||
* MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
package org.kiwix.kiwixlib;
|
||||
package org.kiwix.libkiwix;
|
||||
|
||||
public class JNIICU
|
||||
{
|
@ -18,11 +18,11 @@
|
||||
* MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
package org.kiwix.kiwixlib;
|
||||
package org.kiwix.libkiwix;
|
||||
|
||||
import android.content.Context;
|
||||
import com.getkeepsafe.relinker.ReLinker;
|
||||
import org.kiwix.kiwixlib.JNIICU;
|
||||
import org.kiwix.libkiwix.JNIICU;
|
||||
|
||||
public class JNIKiwix
|
||||
{
|
@ -17,7 +17,7 @@
|
||||
* MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
package org.kiwix.kiwixlib;
|
||||
package org.kiwix.libkiwix;
|
||||
|
||||
public class JNIKiwixBool
|
||||
{
|
@ -17,7 +17,7 @@
|
||||
* MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
package org.kiwix.kiwixlib;
|
||||
package org.kiwix.libkiwix;
|
||||
|
||||
public class JNIKiwixException extends Exception
|
||||
{
|
@ -17,7 +17,7 @@
|
||||
* MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
package org.kiwix.kiwixlib;
|
||||
package org.kiwix.libkiwix;
|
||||
|
||||
public class JNIKiwixInt
|
||||
{
|
@ -17,10 +17,10 @@
|
||||
* MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
package org.kiwix.kiwixlib;
|
||||
package org.kiwix.libkiwix;
|
||||
|
||||
import org.kiwix.kiwixlib.JNIKiwixException;
|
||||
import org.kiwix.kiwixlib.Library;
|
||||
import org.kiwix.libkiwix.JNIKiwixException;
|
||||
import org.kiwix.libkiwix.Library;
|
||||
|
||||
public class JNIKiwixServer
|
||||
{
|
@ -17,7 +17,7 @@
|
||||
* MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
package org.kiwix.kiwixlib;
|
||||
package org.kiwix.libkiwix;
|
||||
|
||||
public class JNIKiwixString
|
||||
{
|
@ -17,10 +17,10 @@
|
||||
* MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
package org.kiwix.kiwixlib;
|
||||
package org.kiwix.libkiwix;
|
||||
|
||||
import org.kiwix.kiwixlib.Book;
|
||||
import org.kiwix.kiwixlib.JNIKiwixException;
|
||||
import org.kiwix.libkiwix.Book;
|
||||
import org.kiwix.libkiwix.JNIKiwixException;
|
||||
|
||||
public class Library
|
||||
{
|
@ -17,9 +17,9 @@
|
||||
* MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
package org.kiwix.kiwixlib;
|
||||
package org.kiwix.libkiwix;
|
||||
|
||||
import org.kiwix.kiwixlib.Library;
|
||||
import org.kiwix.libkiwix.Library;
|
||||
|
||||
public class Manager
|
||||
{
|
Loading…
x
Reference in New Issue
Block a user