change domain name to doric.pub
This commit is contained in:
@@ -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" />
|
||||
|
||||
|
@@ -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
|
@@ -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;
|
||||
|
||||
/**
|
@@ -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;
|
||||
|
@@ -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
|
@@ -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;
|
@@ -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"
|
||||
|
Reference in New Issue
Block a user