Skip to content

Commit f45c45c

Browse files
author
Rafael Ortega
committed
raise min and target versions
1 parent b876e07 commit f45c45c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

dsbridge/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 23
5-
buildToolsVersion '25.0.0'
4+
compileSdkVersion 28
5+
buildToolsVersion '25.0.3'
66

77
defaultConfig {
8-
minSdkVersion 11
9-
targetSdkVersion 23
8+
minSdkVersion 14
9+
targetSdkVersion 28
1010
versionCode 1
1111
versionName "1.0"
1212

dsbridge/src/main/java/wendu/dsbridge/DWebView.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import android.annotation.SuppressLint;
44
import android.annotation.TargetApi;
55
import android.app.Activity;
6-
//import android.app.AlertDialog;
76
import android.app.Dialog;
87
import android.content.Context;
98
import android.content.DialogInterface;
@@ -13,8 +12,6 @@
1312
import android.os.Handler;
1413
import android.os.Looper;
1514
import android.os.Message;
16-
import android.support.annotation.Keep;
17-
import android.support.v7.app.AlertDialog;
1815
import android.util.AttributeSet;
1916
import android.util.Log;
2017
import android.view.Gravity;
@@ -35,6 +32,9 @@
3532
import android.widget.EditText;
3633
import android.widget.FrameLayout;
3734

35+
import androidx.annotation.Keep;
36+
import androidx.appcompat.app.AlertDialog;
37+
3838
import org.json.JSONArray;
3939
import org.json.JSONException;
4040
import org.json.JSONObject;

0 commit comments

Comments
 (0)