特定于风味的资源的目录结构
不同风格的应用程序构建可以包含不同的资源。要创建特定于 flavor 的资源,请在 src
目录中创建一个带有小写名称的目录,并以与通常相同的方式添加资源。
例如,如果你有一个味道 Development
并想为它提供一个独特的启动器图标,你将创建一个目录 src/development/res/drawable-mdpi
并在该目录中创建一个带有你的开发特定图标的 ic_launcher.png
文件。
目录结构如下所示:
src/
main/
res/
drawable-mdpi/
ic_launcher.png <-- the default launcher icon
development/
res/
drawable-mdpi/
ic_launcher.png <-- the launcher icon used when the product flavor is 'Development'
(当然,在这种情况下,你还可以为 drawable-hdpi,drawable-xhdpi 等创建图标 )。