sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
@Composable | |
fun FloatingHeartsAnimation() { | |
var showHearts by remember { mutableStateOf(false) } | |
val heartList = remember { mutableStateListOf<Int>() } | |
var sliderValue by remember { mutableFloatStateOf(0.5f) } | |
val scale = remember { Animatable(1f) } | |
val scope = rememberCoroutineScope() | |
val config = HeartConfig( | |
radiusMultiplier = lerp(0.5f, 2f, sliderValue), |
https://code.google.com/p/android/issues/detail?id=32696#c5 | |
If you have a certificate that is not | |
trusted by Android, when you add it, it goes in the personal cert store. | |
When you add a cert in this personal cert store, the system requires a | |
higher security level to unlock the device. But if you manage to add your | |
cert to the system store then you don't have this requirement. Obviously, | |
root is required to add a certificate to the system store, but it is quiet | |
easy. |