mirror of
				https://github.com/owncloud/android-library.git
				synced 2025-10-31 10:27:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			430 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			430 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| bootanim=""
 | |
| failcounter=0
 | |
| checkcounter=0
 | |
| until [[ "$bootanim" =~ "stopped" ]]; do
 | |
|    bootanim=`adb -e shell getprop init.svc.bootanim 2>&1`
 | |
|    echo "($checkcounter) $bootanim"
 | |
|    if [[ "$bootanim" =~ "not found" ]]; then
 | |
|       let "failcounter += 1"
 | |
|       if [[ $failcounter -gt 30 ]]; then
 | |
|         echo "Failed to start emulator"
 | |
|         exit 1
 | |
|       fi
 | |
|    fi
 | |
|    let "checkcounter += 1"
 | |
|    sleep 10
 | |
| done
 | |
| echo "Done"
 |