is your android studio need to build with maven or gradle bro?
@arshadali8976 Жыл бұрын
it ain't gonna work b'coz 'kotlin-android-extensions' Gradle plugin is no longer supported
@HadassahQ.Mwende Жыл бұрын
You don't know what you are doing
@user-Rania-n7m Жыл бұрын
You Just copied the code from somewhere, speak up 🗣️, if you know how to explain it. Teachers aren't dumb!
@pao27257 ай бұрын
At least it works, teachers copy from something too
@laroquitaperez Жыл бұрын
Does anyone know what was pressed at the minute 12:52?
@Kazner0h Жыл бұрын
I need this answer too
@aarinsheik1583 Жыл бұрын
alt+enter
@Adam-oh3pc Жыл бұрын
it doesnt work anymore bro because the The 'kotlin-android-extensions' Gradle plugin is no longer supported
@taimurahmad Жыл бұрын
use view binding in your gradle use (at the bottom of android}android{ ... buildFeatures { viewBinding = true } } in main activity use this codee lateinit var binding: ActivityMainBinding override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) binding = ActivityMainBinding.inflate(layoutInflater) setContentView(binding.root) with this you can reference like this: binding.buttonClear.setOnClickListener{ binding.input.text="" binding.output.text="" }
@dgd1gamer Жыл бұрын
@@taimurahmadthank you
@aarinsheik1583 Жыл бұрын
bro ,same problem , did you get the solution ?
@Adam-oh3pc Жыл бұрын
@@aarinsheik1583 i got it bro but i forgot and i didnt touch kotlin anymore for 4 months🤣
@amir6056 Жыл бұрын
Thank you !
@NB-tc7ey2 жыл бұрын
thx man it...i followed the code and it worked perfectly👍
@darrenmendez72622 жыл бұрын
is there anyway you can add modulo in this calculator?
@history_funy2 жыл бұрын
I wrote it as is, and it works very well. You made the video very well. thank you👍
@missamiry97092 жыл бұрын
val result=Expression(expression).calculate(), i have an error in Expression word would you please give an idea.