mirror of
https://github.com/godotengine/godot.git
synced 2025-10-27 11:44:21 +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:
commit
413e68fced
3 changed files with 6 additions and 5 deletions
|
|
@ -1,6 +1,7 @@
|
|||
#Wed Apr 10 15:27:10 PDT 2013
|
||||
#Fri May 12 08:50:03 KST 2017
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-bin.zip
|
||||
org.gradle.jvmargs=-Xmx1536M
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue