diff --git a/src/org/openbravo/mobile/procurement/ProcurementApplicationCacheComponent.java b/src/org/openbravo/mobile/procurement/ProcurementApplicationCacheComponent.java
index 49da215..58c77b9 100644
--- a/src/org/openbravo/mobile/procurement/ProcurementApplicationCacheComponent.java
+++ b/src/org/openbravo/mobile/procurement/ProcurementApplicationCacheComponent.java
@@ -8,61 +8,21 @@
  */
 package org.openbravo.mobile.procurement;
 
-import java.io.File;
 import java.util.ArrayList;
-import java.util.Iterator;
 import java.util.List;
 
-import org.apache.commons.io.FileUtils;
-import org.openbravo.client.kernel.RequestContext;
 import org.openbravo.mobile.core.MobileCoreApplicationCacheComponent;
 
 public class ProcurementApplicationCacheComponent extends MobileCoreApplicationCacheComponent {
 
-  private static final String PATH_PREFIX = "web/";
-
-  @Override
-  public List<String> getImageFileList() {
-    final String[] extensions = { "png", "gif" };
-    return transformPath(getFileList(extensions));
-  }
-
   @Override
-  public List<String> getcssFileList() {
-    final String[] extensions = { "css", "less" };
-    List<String> list = transformPath(getFileList(extensions));
+  public List<String> getAppList() {
+    final ArrayList<String> list = new ArrayList<String>();
     list.add("../../org.openbravo.mobile.core/OBCLKER_Kernel/StyleSheetResources?_appName=OBMPR");
+    list.addAll(getImageFileList());
     return list;
   }
 
-  private List<String> getFileList(String[] extensions) {
-
-    final String relativePath = "/" + PATH_PREFIX + getModulePackageName();
-
-    List<String> fileList = new ArrayList<String>();
-
-    final File directory = new File(RequestContext.getServletContext().getRealPath(relativePath));
-
-    final Iterator<File> it = FileUtils.iterateFiles(directory, extensions, true);
-
-    while (it.hasNext()) {
-      final File f = (File) it.next();
-      fileList.add(f.getPath());
-    }
-    return fileList;
-  }
-
-  private List<String> transformPath(List<String> stringFileList) {
-    final List<String> resources = new ArrayList<String>();
-    final String relativePath = PATH_PREFIX + getModulePackageName();
-
-    for (final String f : stringFileList) {
-      final int pos = f.indexOf(relativePath);
-      resources.add("../../" + f.substring(pos));
-    }
-    return resources;
-  }
-
   @Override
   public String getAppName() {
     return MobileProcurementConstants.APP_IDENTIFIER;
