Skip to content
This repository was archived by the owner on Feb 1, 2020. It is now read-only.

Commit 2f59785

Browse files
committed
support for hidden, and auto-hidden keys
Change-Id: I72537fff8eb7c1a12aee9b1a36c38ab39518e12e
1 parent e04b802 commit 2f59785

4 files changed

Lines changed: 13 additions & 6 deletions

File tree

api/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 24
4+
compileSdkVersion 25
55
buildToolsVersion '24.0.3'
66

77
defaultConfig {
88
minSdkVersion 7
9-
targetSdkVersion 24
10-
versionCode 4
11-
versionName "1.7.0"
9+
targetSdkVersion 25
10+
versionCode 6
11+
versionName "1.8.0"
1212
}
1313
buildTypes {
1414
release {

api/src/main/res/values/keyboard_layout_api.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,13 @@ Copyright (C) 2013 Menny Even-Danan
8888
<!-- The characters to display as a hint for the popup keyboard -->
8989
<attr name="hintLabel" format="string"/>
9090

91+
<attr name="showInLayout">
92+
<!--default value-->
93+
<flag name="always" value="0"/>
94+
<flag name="if_applicable" value="1"/>
95+
<flag name="never" value="2"/>
96+
</attr>
97+
9198
<!-- coma separated tags for this key. Might be used for completions -->
9299
<attr name="tags" format="string"/>
93100
</declare-styleable>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<resources>
3-
<integer name="anysoftkeyboard_api_version_code">5</integer>
3+
<integer name="anysoftkeyboard_api_version_code">6</integer>
44
</resources>

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.2.2'
8+
classpath 'com.android.tools.build:gradle:2.2.3'
99
}
1010
}
1111

0 commit comments

Comments
 (0)