mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
915 B
Java
22 lines
915 B
Java
#filter substitution
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko.sync;
|
|
|
|
/**
|
|
* Preprocessed class for storing preprocessed values.
|
|
*/
|
|
public class GlobalConstants {
|
|
public static final String PRODUCT_NAME = "@MOZ_APP_DISPLAYNAME@";
|
|
public static final String SYNC_VERSION_STRING = "1.@MOZ_APP_VERSION@.0";
|
|
|
|
public static final String USER_AGENT = "Firefox AndroidSync " + SYNC_VERSION_STRING +
|
|
" (" + PRODUCT_NAME + ")";
|
|
public static final String BROWSER_INTENT_PACKAGE = "@ANDROID_PACKAGE_NAME@";
|
|
public static final String BROWSER_INTENT_CLASS = BROWSER_INTENT_PACKAGE + ".App";
|
|
|
|
public static final String ACCOUNTTYPE_SYNC = "@MOZ_ANDROID_SHARED_ACCOUNT_TYPE@";
|
|
}
|