Skip to content

Commit 01d56aa

Browse files
committed
build 3.1.0
1 parent 81b67c3 commit 01d56aa

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ allprojects {
3636

3737
```java
3838
dependencies {
39-
implementation 'com.github.youlookwhat:ByWebView:1.1.4'
39+
implementation 'com.github.youlookwhat:ByWebView:1.1.6'
4040
}
4141

4242
```
@@ -182,9 +182,9 @@ byWebView = ByWebView
182182

183183
## Screenshots
184184

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

189189
## Download
190190
- [Demo示例下载][2]

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "com.example.jingbin.webviewstudy"
88
minSdkVersion 14
99
targetSdkVersion 28
10-
versionCode 11
11-
versionName "3.0.1"
10+
versionCode 12
11+
versionName "3.1.0"
1212
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1313
// tencent x5
1414
ndk {

app/src/main/assets/callsms.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</div>
3939
<div class="article_content">
4040
<!--前端嵌入js,img节点-->
41-
<img src="./callsms_files/753b877c-c098-43e9-85cc-6df5bbdaaafe" style="width: 100%" has_link ="https://github.com/youlookwhat/WebViewStudy">
41+
<img src="./callsms_files/753b877c-c098-43e9-85cc-6df5bbdaaafe" style="width: 100%" has_link ="https://github.com/youlookwhat/ByWebView">
4242
<doctype html="">
4343
<title></title>
4444

app/src/main/java/com/example/jingbin/webviewstudy/MainActivity.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import me.jingbin.web.ByWebTools;
2727

2828
/**
29-
* Link to: https://github.com/youlookwhat/WebViewStudy
29+
* Link to: https://github.com/youlookwhat/ByWebView
3030
* contact me: https://www.jianshu.com/u/e43c6e979831
3131
*/
3232
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
@@ -128,7 +128,7 @@ public void onClick(DialogInterface dialog, int which) {
128128
@Override
129129
public void onClick(DialogInterface dialog, int which) {
130130
state = 0;
131-
loadUrl("https://github.com/youlookwhat/WebViewStudy", "WebViewStudy");
131+
loadUrl("https://github.com/youlookwhat/ByWebView", "ByWebView");
132132
}
133133
});
134134
builder.show();
@@ -144,7 +144,7 @@ public void onClick(DialogInterface dialog, int which) {
144144
private void openUrl() {
145145
state = 0;
146146
String url = ByWebTools.getUrl(etSearch.getText().toString().trim());
147-
loadUrl(!TextUtils.isEmpty(url) ? url : "https://github.com/youlookwhat/WebViewStudy", "详情");
147+
loadUrl(!TextUtils.isEmpty(url) ? url : "https://github.com/youlookwhat/ByWebView", "ByWebView");
148148
}
149149

150150
@Override
@@ -158,11 +158,11 @@ public boolean onOptionsItemSelected(MenuItem item) {
158158
switch (item.getItemId()) {
159159
case R.id.actionbar_update:
160160
state = 0;
161-
loadUrl("http://d.6short.com/webviewstudy", "网页浏览器 - fir.im");
161+
loadUrl("https://github.com/youlookwhat/download/raw/main/ByWebView.apk", "ByWebView.apk");
162162
break;
163163
case R.id.actionbar_about:
164164
state = 0;
165-
loadUrl("https://github.com/youlookwhat/WebViewStudy", "WebViewStudy");
165+
loadUrl("https://github.com/youlookwhat/ByWebView", "ByWebView");
166166
break;
167167
default:
168168
break;

app/src/main/java/com/example/jingbin/webviewstudy/tencentx5/X5WebViewActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* 6、getWindow().setFormat(PixelFormat.TRANSLUCENT);
4646
*
4747
* @author jingbin
48-
* link to https://github.com/youlookwhat/WebViewStudy
48+
* link to https://github.com/youlookwhat/ByWebView
4949
*/
5050
public class X5WebViewActivity extends AppCompatActivity implements IX5WebPageView {
5151

app/src/main/java/com/example/jingbin/webviewstudy/ui/WebViewActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
* 被作为第三方浏览器打开
5555
*
5656
* @author jingbin
57-
* link to https://github.com/youlookwhat/WebViewStudy
57+
* link to https://github.com/youlookwhat/ByWebView
5858
* new to {@link ByWebViewActivity}
5959
*/
6060
@Deprecated

0 commit comments

Comments
 (0)