Skip to content

Commit d515f02

Browse files
Release 1.1.4
1 parent df5f002 commit d515f02

File tree

4 files changed

+98
-75
lines changed

4 files changed

+98
-75
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Easily reference the library in your Android projects using this dependency in y
5252

5353
```java
5454
dependencies {
55-
compile 'com.thefinestartist:finestwebview:1.1.2'
55+
compile 'com.thefinestartist:finestwebview:1.1.4'
5656
}
5757
```
5858

@@ -105,6 +105,13 @@ You can use your own Theme for FinestWebView. If you want to use pre-defined the
105105

106106
### 2. Builder Options
107107

108+
**Constructors**
109+
```java
110+
Builder(@NonNull Activity activity);
111+
// If you use context instead of activity, FinestWebView enter animation won't work
112+
Builder(@NonNull Context context);
113+
```
114+
108115
**WebView Listener Options**
109116
```java
110117
setWebViewListener(WebViewListener listener);

library/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ android {
1414
minSdkVersion 7
1515
targetSdkVersion 23
1616
versionCode 1
17-
versionName "1.1.2"
17+
versionName "1.1.4"
1818
}
1919
}
2020

@@ -34,7 +34,7 @@ publish {
3434
userOrg = 'thefinestartist'
3535
groupId = 'com.thefinestartist'
3636
artifactId = 'finestwebview'
37-
publishVersion = '1.1.2'
37+
publishVersion = '1.1.4'
3838
desc = 'Beautiful and customizable Android Activity that shows web pages within an app.'
3939
website = 'https://github.com/TheFinestArtist/FinestWebView-Android'
4040
}

0 commit comments

Comments
 (0)