rename package
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.github.pengfeizhou.doric" />
|
||||
package="com.github.penfeizhou.doric" />
|
||||
|
@@ -1,4 +1,4 @@
|
||||
package com.github.pengfeizhou.doric;
|
||||
package com.github.penfeizhou.doric;
|
||||
|
||||
import android.app.Application;
|
||||
|
@@ -1,10 +1,10 @@
|
||||
package com.github.pengfeizhou.doric;
|
||||
package com.github.penfeizhou.doric;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
import com.github.pengfeizhou.doric.async.AsyncResult;
|
||||
import com.github.pengfeizhou.doric.plugin.DoricNativePlugin;
|
||||
import com.github.pengfeizhou.doric.extension.bridge.DoricPluginInfo;
|
||||
import com.github.penfeizhou.doric.async.AsyncResult;
|
||||
import com.github.penfeizhou.doric.plugin.DoricNativePlugin;
|
||||
import com.github.penfeizhou.doric.extension.bridge.DoricPluginInfo;
|
||||
import com.github.pengfeizhou.jscore.JSDecoder;
|
||||
|
||||
import java.util.HashMap;
|
@@ -1,10 +1,8 @@
|
||||
package com.github.pengfeizhou.doric;
|
||||
package com.github.penfeizhou.doric;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
import com.github.pengfeizhou.doric.async.AsyncCall;
|
||||
import com.github.pengfeizhou.doric.async.AsyncResult;
|
||||
import com.github.pengfeizhou.doric.utils.DoricLog;
|
||||
import com.github.penfeizhou.doric.async.AsyncResult;
|
||||
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
@@ -1,13 +1,13 @@
|
||||
package com.github.pengfeizhou.doric;
|
||||
package com.github.penfeizhou.doric;
|
||||
|
||||
import android.os.Handler;
|
||||
import android.os.Looper;
|
||||
|
||||
import com.github.pengfeizhou.doric.async.AsyncCall;
|
||||
import com.github.pengfeizhou.doric.async.AsyncResult;
|
||||
import com.github.pengfeizhou.doric.engine.DoricJSEngine;
|
||||
import com.github.pengfeizhou.doric.utils.DoricConstant;
|
||||
import com.github.pengfeizhou.doric.utils.DoricLog;
|
||||
import com.github.penfeizhou.doric.async.AsyncCall;
|
||||
import com.github.penfeizhou.doric.async.AsyncResult;
|
||||
import com.github.penfeizhou.doric.engine.DoricJSEngine;
|
||||
import com.github.penfeizhou.doric.utils.DoricConstant;
|
||||
import com.github.penfeizhou.doric.utils.DoricLog;
|
||||
import com.github.pengfeizhou.jscore.JSDecoder;
|
||||
|
||||
import java.util.concurrent.Callable;
|
@@ -1,4 +1,4 @@
|
||||
package com.github.pengfeizhou.doric;
|
||||
package com.github.penfeizhou.doric;
|
||||
|
||||
import android.content.Context;
|
||||
import android.os.Build;
|
@@ -1,7 +1,7 @@
|
||||
package com.github.pengfeizhou.doric;
|
||||
package com.github.penfeizhou.doric;
|
||||
|
||||
|
||||
import com.github.pengfeizhou.doric.async.AsyncResult;
|
||||
import com.github.penfeizhou.doric.async.AsyncResult;
|
||||
import com.github.pengfeizhou.jscore.JSDecoder;
|
||||
|
||||
/**
|
@@ -1,4 +1,4 @@
|
||||
package com.github.pengfeizhou.doric.async;
|
||||
package com.github.penfeizhou.doric.async;
|
||||
|
||||
import android.os.Handler;
|
||||
import android.os.Looper;
|
@@ -1,4 +1,4 @@
|
||||
package com.github.pengfeizhou.doric.async;
|
||||
package com.github.penfeizhou.doric.async;
|
||||
|
||||
/**
|
||||
* @Description: com.github.pengfeizhou.doric.async
|
@@ -1,4 +1,4 @@
|
||||
package com.github.pengfeizhou.doric.async;
|
||||
package com.github.penfeizhou.doric.async;
|
||||
|
||||
/**
|
||||
* @Description: com.github.pengfeizhou.doric.async
|
@@ -1,4 +1,4 @@
|
||||
package com.github.pengfeizhou.doric.engine;
|
||||
package com.github.penfeizhou.doric.engine;
|
||||
|
||||
import android.os.Handler;
|
||||
import android.os.HandlerThread;
|
||||
@@ -6,12 +6,12 @@ import android.os.Looper;
|
||||
import android.os.Message;
|
||||
import android.text.TextUtils;
|
||||
|
||||
import com.github.pengfeizhou.doric.Doric;
|
||||
import com.github.pengfeizhou.doric.extension.bridge.DoricBridgeExtension;
|
||||
import com.github.pengfeizhou.doric.utils.DoricConstant;
|
||||
import com.github.pengfeizhou.doric.utils.DoricLog;
|
||||
import com.github.pengfeizhou.doric.extension.timer.DoricTimerExtension;
|
||||
import com.github.pengfeizhou.doric.utils.DoricUtils;
|
||||
import com.github.penfeizhou.doric.Doric;
|
||||
import com.github.penfeizhou.doric.extension.bridge.DoricBridgeExtension;
|
||||
import com.github.penfeizhou.doric.extension.timer.DoricTimerExtension;
|
||||
import com.github.penfeizhou.doric.utils.DoricConstant;
|
||||
import com.github.penfeizhou.doric.utils.DoricLog;
|
||||
import com.github.penfeizhou.doric.utils.DoricUtils;
|
||||
import com.github.pengfeizhou.jscore.JSDecoder;
|
||||
import com.github.pengfeizhou.jscore.JavaFunction;
|
||||
import com.github.pengfeizhou.jscore.JavaValue;
|
@@ -1,4 +1,4 @@
|
||||
package com.github.pengfeizhou.doric.engine;
|
||||
package com.github.penfeizhou.doric.engine;
|
||||
|
||||
import com.github.pengfeizhou.jscore.JSDecoder;
|
||||
import com.github.pengfeizhou.jscore.JSExecutor;
|
@@ -1,4 +1,4 @@
|
||||
package com.github.pengfeizhou.doric.engine;
|
||||
package com.github.penfeizhou.doric.engine;
|
||||
|
||||
import com.github.pengfeizhou.jscore.JSDecoder;
|
||||
import com.github.pengfeizhou.jscore.JSRuntimeException;
|
@@ -1,19 +1,16 @@
|
||||
package com.github.pengfeizhou.doric.extension.bridge;
|
||||
package com.github.penfeizhou.doric.extension.bridge;
|
||||
|
||||
import android.text.TextUtils;
|
||||
|
||||
import com.github.pengfeizhou.doric.Doric;
|
||||
import com.github.pengfeizhou.doric.DoricContext;
|
||||
import com.github.pengfeizhou.doric.DoricContextManager;
|
||||
import com.github.pengfeizhou.doric.DoricDriver;
|
||||
import com.github.pengfeizhou.doric.plugin.DoricNativePlugin;
|
||||
import com.github.pengfeizhou.doric.plugin.ModalPlugin;
|
||||
import com.github.pengfeizhou.doric.utils.DoricLog;
|
||||
import com.github.pengfeizhou.doric.utils.DoricUtils;
|
||||
import com.github.penfeizhou.doric.DoricContext;
|
||||
import com.github.penfeizhou.doric.plugin.DoricNativePlugin;
|
||||
import com.github.penfeizhou.doric.plugin.ModalPlugin;
|
||||
import com.github.penfeizhou.doric.DoricContextManager;
|
||||
import com.github.penfeizhou.doric.utils.DoricLog;
|
||||
import com.github.penfeizhou.doric.utils.DoricUtils;
|
||||
import com.github.pengfeizhou.jscore.JSDecoder;
|
||||
import com.github.pengfeizhou.jscore.JavaValue;
|
||||
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
@@ -1,4 +1,4 @@
|
||||
package com.github.pengfeizhou.doric.extension.bridge;
|
||||
package com.github.penfeizhou.doric.extension.bridge;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
@@ -1,4 +1,4 @@
|
||||
package com.github.pengfeizhou.doric.extension.bridge;
|
||||
package com.github.penfeizhou.doric.extension.bridge;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
@@ -1,10 +1,10 @@
|
||||
package com.github.pengfeizhou.doric.extension.bridge;
|
||||
package com.github.penfeizhou.doric.extension.bridge;
|
||||
|
||||
import android.text.TextUtils;
|
||||
|
||||
import com.github.pengfeizhou.doric.DoricContext;
|
||||
import com.github.pengfeizhou.doric.plugin.DoricNativePlugin;
|
||||
import com.github.pengfeizhou.doric.utils.DoricLog;
|
||||
import com.github.penfeizhou.doric.DoricContext;
|
||||
import com.github.penfeizhou.doric.plugin.DoricNativePlugin;
|
||||
import com.github.penfeizhou.doric.utils.DoricLog;
|
||||
|
||||
import java.lang.reflect.Constructor;
|
||||
import java.lang.reflect.Method;
|
@@ -1,7 +1,7 @@
|
||||
package com.github.pengfeizhou.doric.extension.bridge;
|
||||
package com.github.penfeizhou.doric.extension.bridge;
|
||||
|
||||
import com.github.pengfeizhou.doric.DoricContext;
|
||||
import com.github.pengfeizhou.doric.utils.DoricConstant;
|
||||
import com.github.penfeizhou.doric.DoricContext;
|
||||
import com.github.penfeizhou.doric.utils.DoricConstant;
|
||||
import com.github.pengfeizhou.jscore.JavaValue;
|
||||
|
||||
/**
|
@@ -1,4 +1,4 @@
|
||||
package com.github.pengfeizhou.doric.extension.timer;
|
||||
package com.github.penfeizhou.doric.extension.timer;
|
||||
|
||||
import android.os.Handler;
|
||||
import android.os.Looper;
|
@@ -1,6 +1,6 @@
|
||||
package com.github.pengfeizhou.doric.plugin;
|
||||
package com.github.penfeizhou.doric.plugin;
|
||||
|
||||
import com.github.pengfeizhou.doric.DoricContext;
|
||||
import com.github.penfeizhou.doric.DoricContext;
|
||||
|
||||
/**
|
||||
* @Description: Doric
|
@@ -1,11 +1,11 @@
|
||||
package com.github.pengfeizhou.doric.plugin;
|
||||
package com.github.penfeizhou.doric.plugin;
|
||||
|
||||
import android.widget.Toast;
|
||||
|
||||
import com.github.pengfeizhou.doric.DoricContext;
|
||||
import com.github.pengfeizhou.doric.extension.bridge.DoricComponent;
|
||||
import com.github.pengfeizhou.doric.extension.bridge.DoricMethod;
|
||||
import com.github.pengfeizhou.doric.extension.bridge.DoricPromise;
|
||||
import com.github.penfeizhou.doric.DoricContext;
|
||||
import com.github.penfeizhou.doric.extension.bridge.DoricComponent;
|
||||
import com.github.penfeizhou.doric.extension.bridge.DoricMethod;
|
||||
import com.github.penfeizhou.doric.extension.bridge.DoricPromise;
|
||||
import com.github.pengfeizhou.jscore.ArchiveException;
|
||||
import com.github.pengfeizhou.jscore.JSDecoder;
|
||||
|
@@ -1,4 +1,4 @@
|
||||
package com.github.pengfeizhou.doric.utils;
|
||||
package com.github.penfeizhou.doric.utils;
|
||||
|
||||
/**
|
||||
* @Description: Doric
|
@@ -1,9 +1,9 @@
|
||||
package com.github.pengfeizhou.doric.utils;
|
||||
package com.github.penfeizhou.doric.utils;
|
||||
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.pengfeizhou.doric.Doric;
|
||||
import com.github.penfeizhou.doric.Doric;
|
||||
|
||||
/**
|
||||
* @Description: Doric
|
@@ -1,15 +1,11 @@
|
||||
package com.github.pengfeizhou.doric.utils;
|
||||
package com.github.penfeizhou.doric.utils;
|
||||
|
||||
import android.content.res.AssetManager;
|
||||
import android.os.Handler;
|
||||
import android.os.Looper;
|
||||
import android.support.annotation.NonNull;
|
||||
|
||||
import com.github.pengfeizhou.doric.Doric;
|
||||
import com.github.pengfeizhou.jscore.ArchiveException;
|
||||
import com.github.penfeizhou.doric.Doric;
|
||||
import com.github.pengfeizhou.jscore.JSArray;
|
||||
import com.github.pengfeizhou.jscore.JSDecoder;
|
||||
import com.github.pengfeizhou.jscore.JSNull;
|
||||
import com.github.pengfeizhou.jscore.JSValue;
|
||||
import com.github.pengfeizhou.jscore.JavaValue;
|
||||
|
Reference in New Issue
Block a user