mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
642 B
Java
18 lines
642 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 = "0.6";
|
|
|
|
public static final String USER_AGENT = "Firefox AndroidSync " + SYNC_VERSION_STRING +
|
|
" (" + PRODUCT_NAME + ")";
|
|
}
|