Skip to content

Commit

Permalink
移动目录、降级 AGP 和修复 Type mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
xfqwdsj committed Apr 20, 2024
1 parent b174084 commit 7803a22
Show file tree
Hide file tree
Showing 20 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ class DeepLinkActivity : FhraiseActivity() {
handleDeepLink(intent)
}

override fun onNewIntent(intent: Intent?) {
override fun onNewIntent(intent: Intent) {
super.onNewIntent(intent)
handleDeepLink(intent)
}

private fun handleDeepLink(intent: Intent?) {
val data = intent?.data
if (intent == null || data == null) {
private fun handleDeepLink(intent: Intent) {
val data = intent.data
if (data == null) {
launchMain()
return
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ kotlinx-atomicfu = "0.23.2"
kotlinx-coroutines = "1.8.0"
kotlinx-datetime = "0.5.0"
kotlinx-serilization = "1.6.3"
agp = "8.3.2"
agp = "8.2.2"
androidx-core-splashscreen = "1.0.1"
androidx-window = "1.2.0"
androidx-activity-compose = "1.9.0"
Expand Down

0 comments on commit 7803a22

Please sign in to comment.