Skip to content

Commit 7aecb91

Browse files
committed
Update readme.md
1 parent 4e36c6c commit 7aecb91

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.idea/misc.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ A library to display FontAwesome Icons in any View or a MenuItem
2424
Add the following code snippet to module/build.gradle
2525
```gradle
2626
dependencies {
27-
compile 'com.lmntrx.livin.library.droidawesome:droid-awesome:1.1.2'
27+
compile 'com.lmntrx.livin.library.droidawesome:droid-awesome:1.1.3'
2828
}
2929
```
3030

@@ -34,13 +34,13 @@ dependencies {
3434
<dependency>
3535
<groupId>com.lmntrx.livin.library.droidawesome</groupId>
3636
<artifactId>droid-awesome</artifactId>
37-
<version>1.1.2</version>
37+
<version>1.1.3</version>
3838
<type>pom</type>
3939
</dependency>
4040
```
4141

4242
## How to use it? ##
43-
* Define required icons in res/values/icons.xml
43+
1. Define required icons in res/values/icons.xml
4444
```xml
4545
<?xml version="1.0" encoding="utf-8"?>
4646
<resources>
@@ -49,7 +49,7 @@ dependencies {
4949
<string name="fa_settings_gears">&#xf085;</string>
5050
</resources>
5151
```
52-
* Now use custom view in activity.xml
52+
1. Now use custom view in activity.xml
5353
```xml
5454
<com.lmntrx.livin.library.droidawesome.DroidAwesomeAutoCompleteTextView
5555
android:layout_width="wrap_content"
@@ -81,7 +81,7 @@ textView = (TextView)DroidAwesome.setFontIcon(context,textView,context.getString
8181
Imageview imageView = new Imageview(context);
8282
imageView = (Imageview)DroidAwesome.setFontIcon(context,imageView,context.getString(R.string.your_icon_string));
8383
```
84-
* To use with menu items
84+
1. To use with menu items
8585
```xml
8686
<!--XML-->
8787
<menu xmlns:android="http://schemas.android.com/apk/res/android"
@@ -111,6 +111,10 @@ public boolean onCreateOptionsMenu(Menu menu) {
111111

112112
## ChangeLog ##
113113

114+
### 1.1.3 ###
115+
* Minor Bug Fixes
116+
* Updated build version and support library
117+
114118
### 1.1.2 ###
115119
* Minor Bug Fix
116120

0 commit comments

Comments
 (0)