hnccbits / Algorithm-Visualizer

MIT License
5 stars 4 forks source link

Handler is depricated #2

Open anandshivam44 opened 4 years ago

anandshivam44 commented 4 years ago

Handler is deprecated from Android 11

namanrana16 commented 3 years ago

Hi, can you assign it to me? I would like to work on this issue.

anandshivam44 commented 3 years ago

Sure @namanrana16

widlok commented 3 years ago

Hi @anandshivam44 , Handler.java as is not deprecated. Deprecated is constructor new Handler(); because its hiding implementation and might be dangerous in some cases. You can use different constructor e.g. new Handler(Looper looper); .

anandshivam44 commented 3 years ago

@widlok Thanks