android / android-studio-poet

Large Android projects generator
Apache License 2.0
702 stars 85 forks source link

MutableLiveData initialised on declaration please. #64

Open Gordon-McCrone opened 6 years ago

Gordon-McCrone commented 6 years ago

Example: val liveArticleData = MutableLiveData

() When liveArticleData.value is used compiler requires forced unwrap (!!) Forced unwrap is considered last resort and poor programming practice.

Request: To be able to initialize MutableLiveData at declartion, so do not have to check null.