mirror of
				https://github.com/MinimalBible/MinimalBible
				synced 2025-11-03 18:10:27 -05:00 
			
		
		
		
	Forgot the wait_for_emulator script...
This commit is contained in:
		
							
								
								
									
										17
									
								
								wait_for_emulator
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								wait_for_emulator
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,17 @@
 | 
				
			|||||||
 | 
					#!/bin/bash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					bootanim=""
 | 
				
			||||||
 | 
					failcounter=0
 | 
				
			||||||
 | 
					until [[ "$bootanim" =~ "stopped" ]]; do
 | 
				
			||||||
 | 
					   bootanim=`adb -e shell getprop init.svc.bootanim 2>&1`
 | 
				
			||||||
 | 
					   echo "$bootanim"
 | 
				
			||||||
 | 
					   if [[ "$bootanim" =~ "not found" ]]; then
 | 
				
			||||||
 | 
					      let "failcounter += 1"
 | 
				
			||||||
 | 
					      if [[ $failcounter -gt 3 ]]; then
 | 
				
			||||||
 | 
					        echo "Failed to start emulator"
 | 
				
			||||||
 | 
					        exit 1
 | 
				
			||||||
 | 
					      fi
 | 
				
			||||||
 | 
					   fi
 | 
				
			||||||
 | 
					   sleep 1
 | 
				
			||||||
 | 
					done
 | 
				
			||||||
 | 
					echo "Done"
 | 
				
			||||||
		Reference in New Issue
	
	Block a user