See also:
| Service | Type | Storage | Limitations |
|---|---|---|---|
| Amazon DynamoDB | 25 GB | ||
| Amazon RDS | |||
| Azure SQL Database | MS SQL Server | ||
| 👉 Clever Cloud | PostgreSQL, MySQL, MongoDB, Redis | 256 MB (PostgreSQL) | Max 5 connections (PostgreSQL) |
| /* | |
| * Copyright 2025 Kyriakos Georgiopoulos | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| package com.example.compose_debug | |
| import androidx.compose.animation.EnterTransition | |
| import androidx.compose.animation.ExitTransition | |
| import androidx.compose.animation.core.CubicBezierEasing | |
| import androidx.compose.animation.core.Easing | |
| import androidx.compose.animation.core.FastOutLinearInEasing | |
| import androidx.compose.animation.core.FastOutSlowInEasing | |
| import androidx.compose.animation.core.LinearOutSlowInEasing | |
| import androidx.compose.animation.core.PathEasing |
| /** | |
| * Data class to hold margin states | |
| */ | |
| data class MarginState( | |
| val left: Int, | |
| val top: Int, | |
| val right: Int, | |
| val bottom: Int | |
| ) |
| import android.graphics.SweepGradient | |
| import android.os.Build | |
| import androidx.annotation.VisibleForTesting | |
| import androidx.compose.runtime.Immutable | |
| import androidx.compose.runtime.Stable | |
| import androidx.compose.ui.geometry.* | |
| import androidx.compose.ui.graphics.* | |
| import androidx.compose.ui.util.fastForEachIndexed | |
| import androidx.core.graphics.transform |
| import androidx.compose.animation.core.Animatable | |
| import androidx.compose.animation.core.LinearEasing | |
| import androidx.compose.animation.core.RepeatMode | |
| import androidx.compose.animation.core.animateFloat | |
| import androidx.compose.animation.core.infiniteRepeatable | |
| import androidx.compose.animation.core.rememberInfiniteTransition | |
| import androidx.compose.animation.core.tween | |
| import androidx.compose.foundation.background | |
| import androidx.compose.foundation.gestures.detectDragGestures | |
| import androidx.compose.foundation.layout.Box |
| /* | |
| MIT License | |
| Copyright (c) 2024 Reda El Madini | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: | |
| The above copyright notice and this permission notice shall be included in all |
| package com.mercury.app.updater | |
| import android.app.Activity | |
| import androidx.activity.compose.rememberLauncherForActivityResult | |
| import androidx.activity.result.ActivityResult | |
| import androidx.activity.result.ActivityResultLauncher | |
| import androidx.activity.result.IntentSenderRequest | |
| import androidx.activity.result.contract.ActivityResultContracts | |
| import androidx.compose.runtime.Composable | |
| import androidx.compose.runtime.Stable |
| import android.util.Log | |
| import androidx.compose.runtime.Composable | |
| import androidx.compose.runtime.currentComposer | |
| import androidx.compose.runtime.remember | |
| import androidx.compose.ui.unit.IntBounds | |
| import androidx.ui.tooling.CallGroup | |
| import androidx.ui.tooling.Group | |
| import androidx.ui.tooling.NodeGroup | |
| import androidx.ui.tooling.asTree |
See also:
| Service | Type | Storage | Limitations |
|---|---|---|---|
| Amazon DynamoDB | 25 GB | ||
| Amazon RDS | |||
| Azure SQL Database | MS SQL Server | ||
| 👉 Clever Cloud | PostgreSQL, MySQL, MongoDB, Redis | 256 MB (PostgreSQL) | Max 5 connections (PostgreSQL) |