Android P SDK 28
Category: IT
Continuous Shared Element Transitions: RecyclerView to ViewPager
Misc sport programming
Graph
Topological sorting https://en.wikipedia.org/wiki/Topological_sorting
Numbers
Catalan number and Bracket sequences https://en.wikipedia.org/wiki/Catalan_number ; http://www.genfunc.ru/theory/catalan/
Правильные скобочные последовательности ; http://e-maxx.ru/algo/bracket_sequences ;
Постоянная Капрекара: алгоритм, который всегда сводится к одному числу
https://habr.com/ru/articles/910778/
6174
495
Четные, нечетные, совершенные числа. Even, odd, perfect numbers [https://en.wikipedia.org/wiki/Parity_(mathematics)] [https://en.wikipedia.org/wiki/Perfect_number] [pdf] [pdf] [pdf]
Continue reading Misc sport programmingMosdroid #6
Android Studio steps into wrong sdk source
https://stackoverflow.com/questions/28640513/android-studio-steps-into-wrong-sdk-source
The following workaround worked for me:
- Compile the application without any changes.
- Launch the application in Debug mode (and optionally break on breakpoint).
- Go to
File
>Project Structure
, find yourapp
module (or/and optionally, any other modules) and change theCompile Sdk Version
to one that matches the device you’re debugging on (i.e. 19). - Step into the framework code – it should step into SDK 19 sources.