Skip to content

Commit

Permalink
Bump target SDK to 35, min SDK to 30
Browse files Browse the repository at this point in the history
  • Loading branch information
l2hyunwoo committed Oct 31, 2024
1 parent 504d87b commit e171099
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ import androidx.compose.material3.FabPosition
import androidx.compose.material3.Scaffold
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.collectAsState
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableIntStateOf
import androidx.compose.runtime.mutableStateOf
Expand All @@ -64,7 +63,6 @@ import androidx.compose.ui.res.vectorResource
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.DpOffset
import androidx.compose.ui.unit.dp
import androidx.core.content.ContextCompat.startActivity
import androidx.hilt.navigation.compose.hiltViewModel
import androidx.lifecycle.compose.collectAsStateWithLifecycle
import com.ramcosta.composedestinations.annotation.Destination
Expand Down Expand Up @@ -114,7 +112,6 @@ fun MissionListScreen(

val context = LocalContext.current


resultRecipient.onNavResult { result ->
when (result) {
is NavResult.Canceled -> Unit
Expand All @@ -123,6 +120,7 @@ fun MissionListScreen(
}
}
}

SoptTheme {
when (state) {
MissionsState.Loading -> LoadingScreen()
Expand Down Expand Up @@ -153,7 +151,7 @@ fun MissionListScreen(
WebViewActivity.INTENT_URL,
reportUrl
)
startActivity(context, this, null)
context.startActivity(this)
}
},
onOnboardingButtonClick = { navigator.navigate(OnboardingScreenDestination) }
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
compileSdk = "34"
minSdk = "28"
targetSdk = "34"
compileSdk = "35"
minSdk = "30"
targetSdk = "35"
appVersion = "2.4.0"
versionCode = "20400"

Expand Down

0 comments on commit e171099

Please sign in to comment.