Skip to content

Commit 55b71ce

Browse files
authored
Merge pull request #8 from AAkira/fix/undefined-const-value
Fix undefined const value
2 parents 041fa58 + c59251a commit 55b71ce

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ buildscript {
9999
}
100100
101101
dependencies {
102-
compile 'com.github.aakira:compound-icon-textview:1.2.0@aar'
102+
compile 'com.github.aakira:compound-icon-textview:1.2.1@aar'
103103
}
104104
```
105105
## Using libraries

compoundicontextview/src/main/java/com/github/aakira/compoundicontextview/CompoundIconTextView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
*/
3939
public class CompoundIconTextView extends AppCompatTextView {
4040

41-
public static final int UNDEFINED_RESOURCE = -0x001;
41+
public static final int UNDEFINED_RESOURCE = 0xABCD;
4242

4343
private static final int INDEX_LEFT = 0;
4444
private static final int INDEX_TOP = 1;

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ org.gradle.jvmargs=-Xmx1536m
1919

2020
# This library version
2121

22-
LIBRARY_VERSION_CODE=3
23-
LIBRARY_VERSION_NAME=1.2.0
22+
LIBRARY_VERSION_CODE=4
23+
LIBRARY_VERSION_NAME=1.2.1
2424

2525
# App information
2626

0 commit comments

Comments
 (0)