blob: 83ed5eba3ea5edcc6099c0f444e8cf7056cde101 [file] [log] [blame]
satokba526e32011-12-13 17:21:37 +09001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
Tadashi G. Takaoka8aa99632013-01-21 21:52:57 +09004 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
satokba526e32011-12-13 17:21:37 +09007 *
Tadashi G. Takaoka8aa99632013-01-21 21:52:57 +09008 * http://www.apache.org/licenses/LICENSE-2.0
satokba526e32011-12-13 17:21:37 +09009 *
10 * Unless required by applicable law or agreed to in writing, software
Tadashi G. Takaoka8aa99632013-01-21 21:52:57 +090011 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
satokba526e32011-12-13 17:21:37 +090015 */
16
17package com.android.inputmethod.latin.define;
18
Ken Wakasaf71aee82012-03-27 22:42:10 +090019public final class JniLibName {
20 private JniLibName() {
21 // This class is not publicly instantiable.
22 }
23
satokba526e32011-12-13 17:21:37 +090024 public static final String JNI_LIB_NAME = "jni_latinime";
Steve Kondik0b495922013-12-06 19:21:08 +010025 public static final String JNI_LIB_NAME2 = "jni_latinimegoogle";
satokba526e32011-12-13 17:21:37 +090026}