diff options
author | Michael Wright <michaelwr@google.com> | 2011-06-13 09:13:55 -0700 |
---|---|---|
committer | Michael Wright <michaelwr@google.com> | 2011-06-15 11:32:21 -0700 |
commit | 2fafc7caa70d58090bde4beaea0c8f618e7ab920 (patch) | |
tree | e2e10e60fe59835cfdcbd403e04ff7904b2f69c7 /chimpchat/src | |
parent | 9270799754eb69585f9b2210281aee4637dbf13a (diff) | |
download | sdk-2fafc7caa70d58090bde4beaea0c8f618e7ab920.zip sdk-2fafc7caa70d58090bde4beaea0c8f618e7ab920.tar.gz sdk-2fafc7caa70d58090bde4beaea0c8f618e7ab920.tar.bz2 |
Laying out the base for ChimpChat
Change-Id: Ia9ba8bb572e029bf3c838605feae55b2f91f16eb
Diffstat (limited to 'chimpchat/src')
-rw-r--r-- | chimpchat/src/Android.mk | 25 | ||||
-rw-r--r-- | chimpchat/src/com/android/chimpchat/ChimpChat.java | 28 |
2 files changed, 53 insertions, 0 deletions
diff --git a/chimpchat/src/Android.mk b/chimpchat/src/Android.mk new file mode 100644 index 0000000..301ec71 --- /dev/null +++ b/chimpchat/src/Android.mk @@ -0,0 +1,25 @@ +# +# Copyright (C) 2011 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. +# +LOCAL_PATH := $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_SRC_FILES := $(call all-subdir-java-files) + +LOCAL_MODULE := chimpchat + +LOCAL_MODULE_TAGS := eng + +include $(BUILD_HOST_JAVA_LIBRARY) diff --git a/chimpchat/src/com/android/chimpchat/ChimpChat.java b/chimpchat/src/com/android/chimpchat/ChimpChat.java new file mode 100644 index 0000000..71684c9 --- /dev/null +++ b/chimpchat/src/com/android/chimpchat/ChimpChat.java @@ -0,0 +1,28 @@ + +/* + * Copyright (C) 2011 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.chimpchat; + +import java.util.Map; + +public class ChimpChat { + private final Map<String, String> options; + + public ChimpChat(Map<String, String> options) { + this.options = options; + } +} |