That is a fragment of my MainActivity.kt file.
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
message.text=URL("http://pboss.pozit.pl/contact.html").readText()
navigation.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener)
}
The app is working with just plain text instead of URL("http://pboss.pozit.pl/contact.html").readText()
but is crashing with the following code.
I already added <uses-permission android:name="android.permission.INTERNET"/>
to the mainfest.
Note: URL("http://pboss.pozit.pl/contact.html").readText()
is the only edited thing in whole app.