scottiedog45
06/25/2019, 8:43 PMval intent = Intent(Intent.ACTION_VIEW)
intent.data = Uri.parse(platform.appUrl)
serebit
06/25/2019, 8:45 PMval
doesn't make the variable immutable, it only prevents you from reassigning the variable itselfelizarov
06/25/2019, 8:47 PMintent
is a read-only reference to the particular instance of Intent
class that you create here. Intent
is a mutable class. So you can change the properties of this instance of Intent
class, but you cannot reassign the intent
value to reference a different instance.scottiedog45
06/25/2019, 8:52 PMSam Garfinkel
06/26/2019, 1:13 PMdata
classes