summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorKarthikeyan Periasamy <kperiasa@codeaurora.org>2015-11-18 15:47:00 -0800
committerjrizzoli <joey@cyanogenmoditalia.it>2015-11-27 16:34:41 +0100
commitc7b08f03e4e4dfa4001e29f875d0c26e88f40ddd (patch)
tree7c099c5da02be7ef55a6823482a8b54eda6f2d51 /template
parentfc32e2d42ef5e55d70392707db41650651d021c2 (diff)
downloadandroid_packages_apps_Gello-c7b08f03e4e4dfa4001e29f875d0c26e88f40ddd.tar.gz
android_packages_apps_Gello-c7b08f03e4e4dfa4001e29f875d0c26e88f40ddd.tar.bz2
android_packages_apps_Gello-c7b08f03e4e4dfa4001e29f875d0c26e88f40ddd.zip
Fixing system browser for bookmarks/history/saved pages on Android M
The authorities com.android.browser and browser are registered with empty implementation in Android M which results in browser not getting the content resolver notification for bookmarks and history. Adding a new authority which will be used by the browser on both android M and L device. Change-Id: I65507e335ae4c8cefb4fc4d42d01a3cdab99a7fd
Diffstat (limited to 'template')
-rw-r--r--template/com/android/browser/BrowserConfig.java.template2
1 files changed, 1 insertions, 1 deletions
diff --git a/template/com/android/browser/BrowserConfig.java.template b/template/com/android/browser/BrowserConfig.java.template
index 36273de9..7aec006b 100644
--- a/template/com/android/browser/BrowserConfig.java.template
+++ b/template/com/android/browser/BrowserConfig.java.template
@@ -36,7 +36,7 @@ import android.content.Context;
public class BrowserConfig extends BrowserConfigBase {
//Authority string used by different providers
- public final static String AUTHORITY = "@PACKAGE_NAME@";
+ public final static String AUTHORITY = "@APP_AUTHORITIES@";
private static BrowserConfig sBrowserConfig;