|
2 | 2 |
|
3 | 3 | import android.Manifest;
|
4 | 4 | import android.annotation.SuppressLint;
|
5 |
| -import android.app.AlertDialog; |
6 | 5 | import android.content.BroadcastReceiver;
|
7 | 6 | import android.content.ClipData;
|
8 | 7 | import android.content.ClipboardManager;
|
|
33 | 32 | import android.os.HandlerThread;
|
34 | 33 | import android.os.Looper;
|
35 | 34 | import android.provider.Settings;
|
36 |
| -import android.support.annotation.NonNull; |
37 |
| -import android.support.v4.app.ActivityCompat; |
38 |
| -import android.support.v4.content.ContextCompat; |
39 |
| -import android.support.v7.app.ActionBar; |
40 |
| -import android.support.v7.app.AppCompatActivity; |
41 |
| -import android.support.v7.preference.PreferenceManager; |
42 |
| -import android.support.v7.widget.CardView; |
43 |
| -import android.support.v7.widget.Toolbar; |
44 | 35 | import android.util.Log;
|
45 | 36 | import android.view.Menu;
|
46 | 37 | import android.view.MenuItem;
|
47 | 38 | import android.view.View;
|
48 | 39 | import android.widget.TextView;
|
49 | 40 | import android.widget.Toast;
|
50 | 41 |
|
| 42 | +import androidx.annotation.NonNull; |
| 43 | +import androidx.appcompat.app.ActionBar; |
| 44 | +import androidx.appcompat.app.AlertDialog; |
| 45 | +import androidx.appcompat.app.AppCompatActivity; |
| 46 | +import androidx.appcompat.widget.Toolbar; |
| 47 | +import androidx.cardview.widget.CardView; |
| 48 | +import androidx.core.app.ActivityCompat; |
| 49 | +import androidx.core.content.ContextCompat; |
| 50 | +import androidx.preference.PreferenceManager; |
| 51 | + |
51 | 52 | import com.github.clans.fab.FloatingActionButton;
|
52 | 53 | import com.github.clans.fab.FloatingActionMenu;
|
53 | 54 |
|
@@ -417,7 +418,7 @@ protected void onCreate(Bundle savedInstanceState)
|
417 | 418 | /// END ///
|
418 | 419 |
|
419 | 420 | super.onCreate(savedInstanceState);
|
420 |
| - setContentView(R.layout.main); |
| 421 | + setContentView(R.layout.main); |
421 | 422 |
|
422 | 423 | /// Initialize ///
|
423 | 424 |
|
@@ -540,8 +541,7 @@ protected void onCreate(Bundle savedInstanceState)
|
540 | 541 |
|
541 | 542 | /// Set default preferences ///
|
542 | 543 |
|
543 |
| - android.support.v7.preference.PreferenceManager |
544 |
| - .setDefaultValues(this, R.xml.preferences, false); |
| 544 | + PreferenceManager.setDefaultValues(this, R.xml.preferences, false); |
545 | 545 |
|
546 | 546 | /// END ///
|
547 | 547 |
|
@@ -1786,7 +1786,7 @@ public void onRequestPermissionsResult(int requestCode, @NonNull String[] permis
|
1786 | 1786 | if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
|
1787 | 1787 | AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
|
1788 | 1788 | builder.setTitle("Background Location Permission (Optional)")
|
1789 |
| - .setMessage("Due to the changes in Android 11+ you need to go to Settings to enable it" + "\n" + "Once Background Location permission is granted you'll be able to see SSID in the notification even if you close the app") |
| 1789 | + .setMessage("Due to the changes in Android 11+ you need to go to Settings to enable it" + "\n" + "Once Background Location permission is granted you'll be able to see the SSID in notification even if you close the app") |
1790 | 1790 | .setPositiveButton("Ok", (dialog, id) -> {
|
1791 | 1791 | Toast.makeText(MainActivity.this, "Go to Permissions -> Location", Toast.LENGTH_LONG).show();
|
1792 | 1792 | Toast.makeText(MainActivity.this, "Select \"Allow all the time\"", Toast.LENGTH_LONG).show();
|
|
0 commit comments