mirror of
https://github.com/yuliskov/LeanKeyboard.git
synced 2026-05-02 21:02:37 -04:00
10 lines
220 B
Java
10 lines
220 B
Java
package com.liskovsoft.keyboardaddons;
|
|
|
|
import android.inputmethodservice.Keyboard;
|
|
import android.support.annotation.Nullable;
|
|
|
|
public interface KeyboardBuilder {
|
|
@Nullable
|
|
Keyboard createKeyboard();
|
|
}
|