mirror of
				https://github.com/commons-app/apps-android-commons.git
				synced 2025-10-30 22:34:02 +01:00 
			
		
		
		
	Add try catch block
This commit is contained in:
		
							parent
							
								
									731c2024f3
								
							
						
					
					
						commit
						9b8a74b88e
					
				
					 1 changed files with 8 additions and 4 deletions
				
			
		|  | @ -57,10 +57,14 @@ public class GPSExtractor { | |||
|         provider = locationManager.getBestProvider(criteria, true); | ||||
|         myLocationListener = new MyLocationListener(); | ||||
| 
 | ||||
|         locationManager.requestLocationUpdates(provider, 400, 1, myLocationListener); | ||||
|         Location location = locationManager.getLastKnownLocation(provider); | ||||
|         if (location != null) { | ||||
|             myLocationListener.onLocationChanged(location); | ||||
|         try { | ||||
|             locationManager.requestLocationUpdates(provider, 400, 1, myLocationListener); | ||||
|             Location location = locationManager.getLastKnownLocation(provider); | ||||
|             if (location != null) { | ||||
|                 myLocationListener.onLocationChanged(location); | ||||
|             } | ||||
|         } catch (IllegalArgumentException e){ | ||||
|             Log.e(TAG, "Illegal argument exception", e); | ||||
|         } | ||||
|     } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 misaochan
						misaochan