@ -473,3 +473,19 @@ At play.google.com/console: 
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					- Save, go to "Publishing Overview" as prompted, and click "Send changes for review". 
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					
 
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					- Note that if you add testers, you have to go to "Publishing Overview" and send those changes or your (closed) testers won't see it. 
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					
 
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					
 
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					## Android Configuration for deep links 
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					
 
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					You must add the following intent filter to the `android/app/src/main/AndroidManifest.xml`  file: 
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					
 
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					   ```xml 
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					               < intent-filter  android:autoVerify = "true" >  
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					                  < action  android:name = "android.intent.action.VIEW"  / >  
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					                  < category  android:name = "android.intent.category.DEFAULT"  / >  
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					                  < category  android:name = "android.intent.category.BROWSABLE"  / >  
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					                  < data  android:scheme = "timesafari"  / >  
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					               < / intent-filter >  
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					   ``` 
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					
 
				
			 
			
		
	
		
			
				
					 
					 
				
				 
				
					... though when we tried that most recently it failed to 'build' the APK with: http(s) scheme and host attribute are missing, but are required for Android App Links [AppLinkUrlError]