diff --git a/src/org/openbravo/mobile/core/BaseCoreAppCacheResourceProvider.java b/src/org/openbravo/mobile/core/BaseCoreAppCacheResourceProvider.java
index ba1150f2..0f35ea2d 100644
--- a/src/org/openbravo/mobile/core/BaseCoreAppCacheResourceProvider.java
+++ b/src/org/openbravo/mobile/core/BaseCoreAppCacheResourceProvider.java
@@ -28,7 +28,6 @@ public abstract class BaseCoreAppCacheResourceProvider implements CoreAppCacheRe
   @Override
   public List<String> getResources() {
     final ArrayList<String> list = new ArrayList<String>();
-    list.addAll(getcssFileList());
     list.addAll(getImageFileList());
     list.addAll(getOtherResources());
     return list;
@@ -43,11 +42,6 @@ public abstract class BaseCoreAppCacheResourceProvider implements CoreAppCacheRe
     return transformPath(getFileList(extensions));
   }
 
-  protected List<String> getcssFileList() {
-    final String[] extensions = { "css", "less" };
-    return transformPath(getFileList(extensions));
-  }
-
   protected List<String> getFileList(String[] extensions) {
 
     final String relativePath = "/" + PATH_PREFIX + getModulePackageName();
diff --git a/src/org/openbravo/mobile/core/MobileCoreApplicationCacheComponent.java b/src/org/openbravo/mobile/core/MobileCoreApplicationCacheComponent.java
index 2288764a..a9c1543d 100644
--- a/src/org/openbravo/mobile/core/MobileCoreApplicationCacheComponent.java
+++ b/src/org/openbravo/mobile/core/MobileCoreApplicationCacheComponent.java
@@ -112,6 +112,9 @@ public class MobileCoreApplicationCacheComponent extends BaseTemplateComponent {
     final Iterator<File> it = FileUtils.iterateFiles(directory, null, true);
     while (it.hasNext()) {
       final File f = it.next();
+      if (f.getName().endsWith(".css") || f.getName().endsWith(".less")) {
+        continue;
+      }
       String fileCompletePath = f.getPath();
       assets.add(("../../"
           + fileCompletePath.substring(fileCompletePath.indexOf(relativePath)).replace("\\", "/"))
@@ -167,15 +170,6 @@ public class MobileCoreApplicationCacheComponent extends BaseTemplateComponent {
     return getFileList(extensions);
   }
 
-  /**
-   * Gets the list of CSSs to be cached. Override this method if your application has any
-   * 
-   */
-  public List<String> getcssFileList() {
-    final String[] extensions = { "css", "less" };
-    return getFileList(extensions);
-  }
-
   public static void getFileList(List<String> fileList, File folder, String[] extensions) {
     File[] filesInFolder = folder.listFiles();
     if (filesInFolder != null) {
diff --git a/src/org/openbravo/mobile/core/templates/cache-manifest.ftl b/src/org/openbravo/mobile/core/templates/cache-manifest.ftl
index cb5e1ae8..5f859f9e 100644
--- a/src/org/openbravo/mobile/core/templates/cache-manifest.ftl
+++ b/src/org/openbravo/mobile/core/templates/cache-manifest.ftl
@@ -43,9 +43,4 @@ ${res}
 ${imageFile}
 </#list>
 
-# CSS
-<#list data.cssFileList as cssFile>
-${cssFile}
-</#list>
-
 </#if>
\ No newline at end of file
