summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorMarc Blank <mblank@google.com>2012-08-22 22:29:22 -0700
committerMarc Blank <mblank@google.com>2012-08-31 22:28:54 -0700
commit2bf91acb8174aab82582ce975a4b60702c810a9c (patch)
tree44192601b88108e145ce2554f748772157534d3f /build
parent92f04b67d9907753a91ff2386db93c0e07d76633 (diff)
downloadandroid_packages_apps_Exchange-2bf91acb8174aab82582ce975a4b60702c810a9c.tar.gz
android_packages_apps_Exchange-2bf91acb8174aab82582ce975a4b60702c810a9c.tar.bz2
android_packages_apps_Exchange-2bf91acb8174aab82582ce975a4b60702c810a9c.zip
Convert authorities, intents, and account manager types
* Tested OK on wiped Nexus * Tested OK on S3 * Upgrade tested on Nexus Change-Id: Icbb939bebbaed71b7662739678b8e59e9a9e1552
Diffstat (limited to 'build')
-rw-r--r--build/src/com/android/exchange/Configuration.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/build/src/com/android/exchange/Configuration.java b/build/src/com/android/exchange/Configuration.java
new file mode 100644
index 00000000..840bcf78
--- /dev/null
+++ b/build/src/com/android/exchange/Configuration.java
@@ -0,0 +1,25 @@
+/*
+ * Copyright (C) 2012 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.exchange;
+
+public class Configuration {
+ public static final String EXCHANGE_ACCOUNT_MANAGER_TYPE = "com.android.exchange";
+ public static final String EXCHANGE_SERVICE_INTENT_ACTION =
+ "com.android.email.EXCHANGE_INTENT";
+ public static final String EXCHANGE_GAL_AUTHORITY = "com.android.exchange.provider";
+ public static final String EXCHANGE_PROTOCOL = "eas";
+}