特定於風味的資源的目錄結構
不同風格的應用程式構建可以包含不同的資源。要建立特定於 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 等建立圖示 )。