Remove mResName and remove the hardwire pathname "/data/data".

Make the code robust.

Change-Id: Ia49eda1885ace0f9603cc181ba95d4d63ab586fc
diff --git a/lib/ExecutionEngine/ScriptCompiled.h b/lib/ExecutionEngine/ScriptCompiled.h
index aa8e4cc..35c9b83 100644
--- a/lib/ExecutionEngine/ScriptCompiled.h
+++ b/lib/ExecutionEngine/ScriptCompiled.h
@@ -66,8 +66,8 @@
 
     ~ScriptCompiled();
 
-    void setResName(char const *resName) {
-      mCompiler.setResName(resName);
+    void setCachePath(char const *cachePath) {
+      mCompiler.setCachePath(cachePath);
       return;
     }