Skip to content

Commit

Permalink
Fixed build.gradle and webview loads with activity
Browse files Browse the repository at this point in the history
  • Loading branch information
TheFinestArtist committed Jan 11, 2016
1 parent ad4b750 commit 82c4e2a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Easily reference the library in your Android projects using this dependency in y

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

Expand Down
6 changes: 3 additions & 3 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.1"
versionName "1.1.2"
}
}

Expand All @@ -27,14 +27,14 @@ dependencies {
compile "com.android.support:support-annotations:${supportLibVersion}"
compile "com.android.support:appcompat-v7:${supportLibVersion}"
compile "com.android.support:design:${supportLibVersion}"
compile 'com.nineoldandroids:library:2.4.0+'
compile 'com.nineoldandroids:library:2.4.0'
}

publish {
userOrg = 'thefinestartist'
groupId = 'com.thefinestartist'
artifactId = 'finestwebview'
publishVersion = '1.1.1'
publishVersion = '1.1.2'
desc = 'Beautiful and customizable Android Activity that shows web pages within an app.'
website = 'https://github.com/TheFinestArtist/FinestWebView-Android'
}
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ protected void bindViews() {
menuOpenWith = (LinearLayout) findViewById(R.id.menuOpenWith);
menuOpenWithTv = (TextView) findViewById(R.id.menuOpenWithTv);
webLayout = (FrameLayout) findViewById(R.id.webLayout);
webView = new WebView(getApplicationContext());
webView = new WebView(this);
webLayout.addView(webView);
}

Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.thefinestartist.finestwebview.sample"
minSdkVersion 7
targetSdkVersion 23
versionCode 8
versionName "1.1.1"
versionCode 9
versionName "1.1.2"
}
buildTypes {
release {
Expand Down
Binary file modified sample/sample-release.apk
Binary file not shown.

0 comments on commit 82c4e2a

Please sign in to comment.