fix: 🩹 remove useless import
All checks were successful
apk / build (push) Successful in 1m35s

This commit is contained in:
Michel Roux 2024-03-01 21:15:49 +01:00
parent cd939d2373
commit eb8a5bfd62
2 changed files with 4 additions and 5 deletions

View File

@ -2,13 +2,13 @@ apply plugin: 'com.android.application'
android { android {
namespace 'net.crystalyx.sharewithtitle' namespace 'net.crystalyx.sharewithtitle'
compileSdk 33 compileSdk 34
defaultConfig { defaultConfig {
applicationId "net.crystalyx.sharewithtitle" applicationId "net.crystalyx.sharewithtitle"
minSdkVersion 11 minSdkVersion 11
targetSdkVersion 33 targetSdkVersion 34
versionCode 8 versionCode 9
versionName "1.6" versionName "1.7"
} }
signingConfigs { signingConfigs {
release { release {

View File

@ -5,7 +5,6 @@ import android.content.Intent;
import android.os.Bundle; import android.os.Bundle;
import android.widget.Toast; import android.widget.Toast;
import java.net.MalformedURLException;
import java.net.URI; import java.net.URI;
import java.net.URL; import java.net.URL;