FabianTerhorst/FastLayout

Remove @Layouts(layouts = {"activity_main", "fragment_one"}) in favor of @Layouts(ids = {R.layout.activity_main, R.layout.fragment_one})

Closed this issue · 0 comments

I will deprecate @Layouts(layouts = {"activity_main", "fragment_one"}), because i used that before i started parsing the R.java file. R.layout is more safe against typos and i could simplify it to @Layouts({R.layout.activity_main, R.layout.fragment_one}).