remove build field: project home

This commit is contained in:
王劲鹏 2019-12-10 16:46:12 +08:00
parent 6045a08360
commit 328c232b8b
2 changed files with 0 additions and 8 deletions

View File

@ -1,7 +1,5 @@
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
def projectHome = project.rootDir.getParent() + "/demo"
android { android {
compileSdkVersion 29 compileSdkVersion 29
buildToolsVersion "29.0.2" buildToolsVersion "29.0.2"
@ -22,10 +20,6 @@ android {
minifyEnabled false minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
} }
debug {
buildConfigField "String", "PROJECT_HOME", "\"${projectHome}\""
}
} }
} }

View File

@ -17,7 +17,6 @@ import com.google.gson.JsonObject;
import pub.doric.DoricContext; import pub.doric.DoricContext;
import pub.doric.DoricContextManager; import pub.doric.DoricContextManager;
import pub.doric.devkit.BuildConfig;
import pub.doric.devkit.DoricDev; import pub.doric.devkit.DoricDev;
import pub.doric.devkit.IDevKit; import pub.doric.devkit.IDevKit;
import pub.doric.devkit.R; import pub.doric.devkit.R;
@ -71,7 +70,6 @@ public class DebugContextPanel extends DialogFragment {
public void onClick(View v) { public void onClick(View v) {
JsonObject jsonObject = new JsonObject(); JsonObject jsonObject = new JsonObject();
jsonObject.addProperty("contextId", doricContext.getContextId()); jsonObject.addProperty("contextId", doricContext.getContextId());
jsonObject.addProperty("projectHome", BuildConfig.PROJECT_HOME);
jsonObject.addProperty("source", doricContext.getSource().replace(".js", ".ts")); jsonObject.addProperty("source", doricContext.getSource().replace(".js", ".ts"));
DoricDev.sendDevCommand(IDevKit.Command.DEBUG, jsonObject); DoricDev.sendDevCommand(IDevKit.Command.DEBUG, jsonObject);
dismissAllowingStateLoss(); dismissAllowingStateLoss();