Skip to content

Commit

Permalink
Bump compile and target sdk to 35 (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
fvorholt authored Nov 4, 2024
1 parent 4620c4c commit ded3466
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package net.grandcentrix.baseProjectSetup

import android.os.Bundle
import androidx.activity.compose.setContent
import androidx.activity.enableEdgeToEdge
import androidx.appcompat.app.AppCompatActivity
import androidx.compose.foundation.layout.padding
import androidx.compose.material3.Scaffold
Expand All @@ -14,6 +15,7 @@ import net.grandcentrix.core.design.theme.AppTheme
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
enableEdgeToEdge()

setContent {
AppTheme {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package net.grandcentrix.baseproject

object AppConfig {
const val MIN_SDK = 26
const val COMPILE_SDK = 34
const val TARGET_SDK = 34
const val COMPILE_SDK = 35
const val TARGET_SDK = 35

const val VERSION_NAME = "1.0"
const val VERSION_CODE = 1
Expand Down

0 comments on commit ded3466

Please sign in to comment.