Retrieving Value using Shared Preference in Kotlin
I am trying to pass a value between two activities in kotlin but if I used the below code then I am getting only "Hello World" default value and not the PREFERENCE_NAME value. My text id name is android:id="@+id/tv_count" Any help is appreciated.
Main Activity:
import android.content.Context
import android.support.v7.app.AppCompatActivity
import android.os.Bundle
import kotlinx.android.synthetic.main.activity_main.*
class MainActivity : AppCompatActivity() {
override fun...