<kotlin.UninitializedPropertyAccessException: late...
# stackoverflow
u
kotlin.UninitializedPropertyAccessException: lateinit property WebView has not been initialized I created an android app and loading an html file on android webView. Which is loaded successfully and working fine. class MainActivity : AppCompatActivity() { private lateinit var myAndroidWebView: WebView; @SuppressLint("SetJavaScriptEnabled") override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) setWebviewDetails(); } private fun setWebviewDetails(){...