Skip to content

Commit

Permalink
raise min and target versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafael Ortega committed Oct 8, 2019
1 parent b876e07 commit f45c45c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions dsbridge/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 23
buildToolsVersion '25.0.0'
compileSdkVersion 28
buildToolsVersion '25.0.3'

defaultConfig {
minSdkVersion 11
targetSdkVersion 23
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "1.0"

Expand Down
6 changes: 3 additions & 3 deletions dsbridge/src/main/java/wendu/dsbridge/DWebView.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import android.annotation.SuppressLint;
import android.annotation.TargetApi;
import android.app.Activity;
//import android.app.AlertDialog;
import android.app.Dialog;
import android.content.Context;
import android.content.DialogInterface;
Expand All @@ -13,8 +12,6 @@
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.support.annotation.Keep;
import android.support.v7.app.AlertDialog;
import android.util.AttributeSet;
import android.util.Log;
import android.view.Gravity;
Expand All @@ -35,6 +32,9 @@
import android.widget.EditText;
import android.widget.FrameLayout;

import androidx.annotation.Keep;
import androidx.appcompat.app.AlertDialog;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
Expand Down

0 comments on commit f45c45c

Please sign in to comment.