change domain name to doric.pub

This commit is contained in:
pengfei.zhou
2019-10-21 09:13:52 +08:00
parent f9b599e7cf
commit a72bd3df37
51 changed files with 159 additions and 204 deletions

View File

@@ -1,17 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.github.penfeizhou.doricdemo">
<uses-permission android:name="android.permission.INTERNET"/>
package="pub.doric.demo">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name="com.github.penfeizhou.doricdemo.MyApplication"
android:name=".MyApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:networkSecurityConfig="@xml/network_security_config"
android:theme="@style/AppTheme">
<activity android:name="com.github.penfeizhou.doricdemo.MainActivity">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

View File

@@ -1,8 +1,9 @@
package com.github.penfeizhou.doricdemo;
import com.github.penfeizhou.doric.DoricComponent;
import com.github.penfeizhou.doric.DoricLibrary;
import com.github.penfeizhou.doric.DoricRegistry;
package pub.doric.demo;
import pub.doric.DoricComponent;
import pub.doric.DoricLibrary;
import pub.doric.DoricRegistry;
/**
* @Description: com.github.penfeizhou.doricdemo

View File

@@ -1,13 +1,13 @@
package com.github.penfeizhou.doricdemo;
package pub.doric.demo;
import android.widget.Toast;
import com.github.penfeizhou.doric.DoricContext;
import com.github.penfeizhou.doric.extension.bridge.DoricMethod;
import com.github.penfeizhou.doric.extension.bridge.DoricPlugin;
import com.github.penfeizhou.doric.extension.bridge.DoricPromise;
import com.github.penfeizhou.doric.plugin.DoricJavaPlugin;
import com.github.penfeizhou.doric.utils.ThreadMode;
import pub.doric.DoricContext;
import pub.doric.extension.bridge.DoricMethod;
import pub.doric.extension.bridge.DoricPlugin;
import pub.doric.extension.bridge.DoricPromise;
import pub.doric.plugin.DoricJavaPlugin;
import pub.doric.utils.ThreadMode;
import com.github.pengfeizhou.jscore.JavaValue;
/**

View File

@@ -1,14 +1,14 @@
package com.github.penfeizhou.doricdemo;
package pub.doric.demo;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import com.github.penfeizhou.doric.Doric;
import com.github.penfeizhou.doric.DoricContext;
import com.github.penfeizhou.doric.dev.LocalServer;
import com.github.penfeizhou.doric.utils.DoricUtils;
import pub.doric.Doric;
import pub.doric.DoricContext;
import pub.doric.dev.LocalServer;
import pub.doric.utils.DoricUtils;
import java.io.IOException;

View File

@@ -1,9 +1,9 @@
package com.github.penfeizhou.doricdemo;
package pub.doric.demo;
import android.app.Application;
import com.github.penfeizhou.doric.Doric;
import com.github.penfeizhou.doric.DoricRegistry;
import pub.doric.Doric;
import pub.doric.DoricRegistry;
/**
* @Description: Doric

View File

@@ -1,4 +1,4 @@
package com.github.penfeizhou.doricdemo;
package pub.doric.demo;
import com.bumptech.glide.annotation.GlideModule;
import com.bumptech.glide.module.AppGlideModule;

View File

@@ -3,7 +3,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.github.penfeizhou.doricdemo.MainActivity">
tools:context="com.github.penfeizhou.doricdemo.pub.doric.demo.MainActivity">
<FrameLayout
android:id="@+id/root"