Android点滴

1、string.xml中字符串前后的空格会被自动去掉,可以用转义字符 英文空格:\u0020

2、Android studio 全局代理 mac

/user/{username}/.gradle/gradle.properties 修改代理设置

设置代理,命令行窗口或者.bash_profile

export http_proxy=http://127.0.0.1:10818;

export https_proxy=http://127.0.0.1:10818;

你可能感兴趣的:(Android点滴)