13 lines
		
	
	
	
		
			558 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			558 B
		
	
	
	
		
			Text
		
	
	
	
	
	
 | 
						|
# Various Android directories, see <https://developer.android.com/tools/variables#envar> for more information
 | 
						|
export ANDROID_HOME="${HOME}/Android/Sdk"
 | 
						|
export ANDROID_USER_HOME="${HOME}/.android"
 | 
						|
export ANDROID_EMULATOR_HOME="${HOME}/.android"
 | 
						|
 | 
						|
# Various directories containing android executables
 | 
						|
export PATH="${ANDROID_HOME}/cmdline-tools/latest/bin:${PATH}"
 | 
						|
export PATH="${ANDROID_HOME}/emulator:${PATH}"
 | 
						|
export PATH="${ANDROID_HOME}/platform-tools:${PATH}"
 | 
						|
 | 
						|
# If not set, adb will not see more than 16 emulators
 | 
						|
export ADB_LOCAL_TRANSPORT_MAX_PORT=5885
 |