Commit da08b453 by Kim Jinsung

#64361 Android14対応

parent dbcd3694
...@@ -122,7 +122,11 @@ public class BackgroundDownloadService extends Service { ...@@ -122,7 +122,11 @@ public class BackgroundDownloadService extends Service {
request.setDestinationUri(Uri.fromFile(file)); request.setDestinationUri(Uri.fromFile(file));
// Registers function to listen to the completion of the download. // Registers function to listen to the completion of the download.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
registerReceiver(onDownloadComplete, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE), RECEIVER_EXPORTED);
} else {
registerReceiver(onDownloadComplete, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE)); registerReceiver(onDownloadComplete, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));
}
// Download 開始 // Download 開始
Logger.d(LOG_TAG, "mDownloadManager.enqueue(request)."); Logger.d(LOG_TAG, "mDownloadManager.enqueue(request).");
......
...@@ -630,8 +630,12 @@ public class ChatWebViewActivity extends CommunicationWebViewActivity implements ...@@ -630,8 +630,12 @@ public class ChatWebViewActivity extends CommunicationWebViewActivity implements
IntentFilter tempIntent = new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE); IntentFilter tempIntent = new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE);
tempIntent.addAction(WifiManager.NETWORK_STATE_CHANGED_ACTION); tempIntent.addAction(WifiManager.NETWORK_STATE_CHANGED_ACTION);
tempIntent.addAction(ConnectivityManager.CONNECTIVITY_ACTION); tempIntent.addAction(ConnectivityManager.CONNECTIVITY_ACTION);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
registerReceiver(receiver, tempIntent, RECEIVER_EXPORTED);
} else {
registerReceiver(receiver, tempIntent); registerReceiver(receiver, tempIntent);
} }
}
private void loadWebViewResource() { private void loadWebViewResource() {
mChatWebView.setWebViewClient(new WebViewClient() { mChatWebView.setWebViewClient(new WebViewClient() {
......
package jp.agentec.abook.abv.ui.viewer.activity; package jp.agentec.abook.abv.ui.viewer.activity;
import android.app.Dialog; import android.app.Dialog;
import android.app.DownloadManager;
import android.content.BroadcastReceiver; import android.content.BroadcastReceiver;
import android.content.Context; import android.content.Context;
import android.content.DialogInterface; import android.content.DialogInterface;
...@@ -587,7 +588,11 @@ public class DeviceImageListActivity extends ABVUIActivity { ...@@ -587,7 +588,11 @@ public class DeviceImageListActivity extends ABVUIActivity {
private void wifiScanStart() { private void wifiScanStart() {
Logger.v(TAG,"wifiScanStart"); Logger.v(TAG,"wifiScanStart");
showProgressPopup(); showProgressPopup();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
registerReceiver(wifiReceiver, new IntentFilter(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION),RECEIVER_EXPORTED);
} else {
registerReceiver(wifiReceiver, new IntentFilter(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION)); registerReceiver(wifiReceiver, new IntentFilter(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION));
}
mWifiManager.startScan(); mWifiManager.startScan();
} }
......
...@@ -6,6 +6,7 @@ import android.content.DialogInterface; ...@@ -6,6 +6,7 @@ import android.content.DialogInterface;
import android.content.Intent; import android.content.Intent;
import android.content.IntentFilter; import android.content.IntentFilter;
import android.net.wifi.WifiManager; import android.net.wifi.WifiManager;
import android.os.Build;
import android.os.Bundle; import android.os.Bundle;
import com.theta.helper.ThetaHelper; import com.theta.helper.ThetaHelper;
...@@ -78,7 +79,11 @@ public class ThetaActivity extends ABVUIActivity { ...@@ -78,7 +79,11 @@ public class ThetaActivity extends ABVUIActivity {
public void onClick(DialogInterface dialog, int which) { public void onClick(DialogInterface dialog, int which) {
changeProgressPopup(getString(R.string.progress)); changeProgressPopup(getString(R.string.progress));
//現在接続状態なのかチェック //現在接続状態なのかチェック
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
registerReceiver(wifiReceiver, new IntentFilter(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION),RECEIVER_EXPORTED);
} else {
registerReceiver(wifiReceiver, new IntentFilter(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION)); registerReceiver(wifiReceiver, new IntentFilter(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION));
}
mWifiManager.startScan(); mWifiManager.startScan();
mWifiScanType = Constant.WifiScanType.ThetaConnectError; mWifiScanType = Constant.WifiScanType.ThetaConnectError;
} }
...@@ -93,7 +98,11 @@ public class ThetaActivity extends ABVUIActivity { ...@@ -93,7 +98,11 @@ public class ThetaActivity extends ABVUIActivity {
Logger.i(TAG,"closeThetaCameraActivity"); Logger.i(TAG,"closeThetaCameraActivity");
showProgressPopup(); showProgressPopup();
//現在接続状態なのかチェック //現在接続状態なのかチェック
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
registerReceiver(wifiReceiver, new IntentFilter(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION), RECEIVER_EXPORTED);
} else {
registerReceiver(wifiReceiver, new IntentFilter(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION)); registerReceiver(wifiReceiver, new IntentFilter(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION));
}
mWifiManager.startScan(); mWifiManager.startScan();
mWifiScanType = Constant.WifiScanType.CloseCameraActivity; mWifiScanType = Constant.WifiScanType.CloseCameraActivity;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment