Skip to content

Commit

Permalink
Merge pull request #8 from AAkira/fix/undefined-const-value
Browse files Browse the repository at this point in the history
Fix undefined const value
  • Loading branch information
AAkira authored Nov 14, 2017
2 parents 041fa58 + c59251a commit 55b71ce
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ buildscript {
}
dependencies {
compile 'com.github.aakira:compound-icon-textview:1.2.0@aar'
compile 'com.github.aakira:compound-icon-textview:1.2.1@aar'
}
```
## Using libraries
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
*/
public class CompoundIconTextView extends AppCompatTextView {

public static final int UNDEFINED_RESOURCE = -0x001;
public static final int UNDEFINED_RESOURCE = 0xABCD;

private static final int INDEX_LEFT = 0;
private static final int INDEX_TOP = 1;
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ org.gradle.jvmargs=-Xmx1536m

# This library version

LIBRARY_VERSION_CODE=3
LIBRARY_VERSION_NAME=1.2.0
LIBRARY_VERSION_CODE=4
LIBRARY_VERSION_NAME=1.2.1

# App information

Expand Down

0 comments on commit 55b71ce

Please sign in to comment.