Skip to content

Commit

Permalink
Release 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
TheFinestArtist committed Jan 26, 2016
1 parent df5f002 commit d515f02
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 75 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Easily reference the library in your Android projects using this dependency in y

```java
dependencies {
compile 'com.thefinestartist:finestwebview:1.1.2'
compile 'com.thefinestartist:finestwebview:1.1.4'
}
```

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

### 2. Builder Options

**Constructors**
```java
Builder(@NonNull Activity activity);
// If you use context instead of activity, FinestWebView enter animation won't work
Builder(@NonNull Context context);
```

**WebView Listener Options**
```java
setWebViewListener(WebViewListener listener);
Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ android {
minSdkVersion 7
targetSdkVersion 23
versionCode 1
versionName "1.1.2"
versionName "1.1.4"
}
}

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

0 comments on commit d515f02

Please sign in to comment.