How can I access values from strings.xml in kotlin android?
class MainActivity : AppCompatActivity(), View.OnClickListener { override fun onClick(p0: Vie
If it helps this is how I did it - you need the application context and also to import the R Class
applicationContext.getString(R.string.text_string) import com.example.yourpackagename.R