*/\r
 package com.owncloud.android.db;\r
 \r
+import com.owncloud.android.MainApp;\r
+\r
 import android.net.Uri;\r
 import android.provider.BaseColumns;\r
 \r
  */\r
 public class ProviderMeta {\r
 \r
-    public static final String AUTHORITY_FILES = "org.owncloud";\r
-    public static final String DB_FILE = "owncloud.db";\r
+    /* These constants are now in MainApp\r
+        public static final String AUTHORITY_FILES = "org.owncloud";\r
+        public static final String DB_FILE = "owncloud.db";\r
+    */\r
     public static final String DB_NAME = "filelist";\r
     public static final int DB_VERSION = 5;\r
 \r
     static public class ProviderTableMeta implements BaseColumns {\r
         public static final String DB_NAME = "filelist";\r
         public static final Uri CONTENT_URI = Uri.parse("content://"\r
-                + AUTHORITY_FILES + "/");\r
+                + MainApp.getAuthority() + "/");\r
         public static final Uri CONTENT_URI_FILE = Uri.parse("content://"\r
-                + AUTHORITY_FILES + "/file");\r
+                + MainApp.getAuthority() + "/file");\r
         public static final Uri CONTENT_URI_DIR = Uri.parse("content://"\r
-                + AUTHORITY_FILES + "/dir");\r
+                + MainApp.getAuthority() + "/dir");\r
 \r
         public static final String CONTENT_TYPE = "vnd.android.cursor.dir/vnd.owncloud.file";\r
         public static final String CONTENT_TYPE_ITEM = "vnd.android.cursor.item/vnd.owncloud.file";\r