Simplified edge to edge (#14)

This commit is contained in:
Android Dev
2025-11-12 00:00:00 +07:00
committed by GitHub
parent e18ffec9f1
commit 9496ab03d1
7 changed files with 36 additions and 19 deletions

View File

@@ -12,7 +12,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
@file:Suppress("UnstableApiUsage")
plugins {
id("com.android.application")
@@ -21,12 +20,12 @@ plugins {
android {
namespace = "com.example.superheroes"
compileSdk = 33
compileSdk = 34
defaultConfig {
applicationId = "com.example.superheroes"
minSdk = 24
targetSdk = 33
targetSdk = 34
versionCode = 1
versionName = "1.0"
@@ -56,7 +55,7 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.4.7"
kotlinCompilerExtensionVersion = "1.5.3"
}
packaging {
resources {
@@ -66,7 +65,7 @@ android {
}
dependencies {
implementation(platform("androidx.compose:compose-bom:2023.06.00"))
implementation(platform("androidx.compose:compose-bom:2023.08.00"))
implementation("androidx.activity:activity-compose:1.7.2")
implementation("androidx.compose.material3:material3")
implementation("androidx.compose.ui:ui")