You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Merge pull request #8723 from volzhs/fix-android-master
Fix possible memory leak for Android and update gradle
This commit is contained in:
@@ -569,10 +569,10 @@ public abstract class DownloaderService extends CustomIntentService implements I
|
||||
*/
|
||||
void pollNetworkState() {
|
||||
if (null == mConnectivityManager) {
|
||||
mConnectivityManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
|
||||
mConnectivityManager = (ConnectivityManager) getApplicationContext().getSystemService(Context.CONNECTIVITY_SERVICE);
|
||||
}
|
||||
if (null == mWifiManager) {
|
||||
mWifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
|
||||
mWifiManager = (WifiManager) getApplicationContext().getSystemService(Context.WIFI_SERVICE);
|
||||
}
|
||||
if (mConnectivityManager == null) {
|
||||
Log.w(Constants.TAG,
|
||||
|
||||
Reference in New Issue
Block a user