You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
404 B

# Attributes in .ini file:
# hw.lcd.density=440
# hw.lcd.height=2280
# hw.lcd.width=1080
# OR, it you need an automated script - they can be simply appended to the existing file:
path=~/.android/avd/Pixel_4_API_29.avd/config.ini
echo "hw.lcd.density=440" >> $path
echo "hw.lcd.height=2280" >> $path
echo "hw.lcd.width=1080" >> $path
echo "vm.heapSize=576" >> $path
echo "hw.ramSize=2048" >> $path