Skip to content

Commit

Permalink
build 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
youlookwhat committed Oct 28, 2021
1 parent 81b67c3 commit 01d56aa
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ allprojects {

```java
dependencies {
implementation 'com.github.youlookwhat:ByWebView:1.1.4'
implementation 'com.github.youlookwhat:ByWebView:1.1.6'
}

```
Expand Down Expand Up @@ -182,9 +182,9 @@ byWebView = ByWebView

## Screenshots

<img width="260" height=“374” src="https://github.com/youlookwhat/WebViewStudy/blob/master/art/view_00.png"></img>
<img width="260" height=“374” src="https://github.com/youlookwhat/WebViewStudy/blob/master/art/电话短信邮件测试.png"></img>
<img width="260" height=“374” src="https://github.com/youlookwhat/WebViewStudy/blob/master/art/上传图片.png"></img>
<img width="260" height=“374” src="https://github.com/youlookwhat/ByWebView/blob/master/art/view_00.png"></img>
<img width="260" height=“374” src="https://github.com/youlookwhat/ByWebView/blob/master/art/电话短信邮件测试.png"></img>
<img width="260" height=“374” src="https://github.com/youlookwhat/ByWebView/blob/master/art/上传图片.png"></img>

## Download
- [Demo示例下载][2]
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.example.jingbin.webviewstudy"
minSdkVersion 14
targetSdkVersion 28
versionCode 11
versionName "3.0.1"
versionCode 12
versionName "3.1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
// tencent x5
ndk {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/assets/callsms.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</div>
<div class="article_content">
<!--前端嵌入js,img节点-->
<img src="./callsms_files/753b877c-c098-43e9-85cc-6df5bbdaaafe" style="width: 100%" has_link ="https://github.com/youlookwhat/WebViewStudy">
<img src="./callsms_files/753b877c-c098-43e9-85cc-6df5bbdaaafe" style="width: 100%" has_link ="https://github.com/youlookwhat/ByWebView">
<doctype html="">
<title></title>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import me.jingbin.web.ByWebTools;

/**
* Link to: https://github.com/youlookwhat/WebViewStudy
* Link to: https://github.com/youlookwhat/ByWebView
* contact me: https://www.jianshu.com/u/e43c6e979831
*/
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
Expand Down Expand Up @@ -128,7 +128,7 @@ public void onClick(DialogInterface dialog, int which) {
@Override
public void onClick(DialogInterface dialog, int which) {
state = 0;
loadUrl("https://github.com/youlookwhat/WebViewStudy", "WebViewStudy");
loadUrl("https://github.com/youlookwhat/ByWebView", "ByWebView");
}
});
builder.show();
Expand All @@ -144,7 +144,7 @@ public void onClick(DialogInterface dialog, int which) {
private void openUrl() {
state = 0;
String url = ByWebTools.getUrl(etSearch.getText().toString().trim());
loadUrl(!TextUtils.isEmpty(url) ? url : "https://github.com/youlookwhat/WebViewStudy", "详情");
loadUrl(!TextUtils.isEmpty(url) ? url : "https://github.com/youlookwhat/ByWebView", "ByWebView");
}

@Override
Expand All @@ -158,11 +158,11 @@ public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.actionbar_update:
state = 0;
loadUrl("http://d.6short.com/webviewstudy", "网页浏览器 - fir.im");
loadUrl("https://github.com/youlookwhat/download/raw/main/ByWebView.apk", "ByWebView.apk");
break;
case R.id.actionbar_about:
state = 0;
loadUrl("https://github.com/youlookwhat/WebViewStudy", "WebViewStudy");
loadUrl("https://github.com/youlookwhat/ByWebView", "ByWebView");
break;
default:
break;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
* 6、getWindow().setFormat(PixelFormat.TRANSLUCENT);
*
* @author jingbin
* link to https://github.com/youlookwhat/WebViewStudy
* link to https://github.com/youlookwhat/ByWebView
*/
public class X5WebViewActivity extends AppCompatActivity implements IX5WebPageView {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
* 被作为第三方浏览器打开
*
* @author jingbin
* link to https://github.com/youlookwhat/WebViewStudy
* link to https://github.com/youlookwhat/ByWebView
* new to {@link ByWebViewActivity}
*/
@Deprecated
Expand Down

0 comments on commit 01d56aa

Please sign in to comment.