File tree Expand file tree Collapse file tree
java/com/runnect/runnect/presentation/detail Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -69,6 +69,12 @@ android {
6969 }
7070 }
7171
72+ packaging {
73+ jniLibs {
74+ useLegacyPackaging = false
75+ }
76+ }
77+
7278 applicationVariants. all { variant ->
7379 variant. outputs. all {
7480 def timestamp = new Date (). format(' yyyyMMdd_HHmmss' )
Original file line number Diff line number Diff line change 4141 android : supportsRtl =" true"
4242 android : theme =" @style/Theme.Runnect"
4343 android : usesCleartextTraffic =" true"
44+ android : extractNativeLibs =" false"
4445 tools : targetApi =" tiramisu" >
4546
4647 <service
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ class CourseDetailActivity :
7979 private var isFromDeepLink: Boolean = false
8080
8181 // 인텐트 부가 데이터
82- private lateinit var rootScreen: CourseDetailRootScreen
82+ private var rootScreen: CourseDetailRootScreen ? = null
8383 private var publicCourseId: Int = - 1
8484
8585 // 서버통신으로 초기화 할 데이터
@@ -407,9 +407,12 @@ class CourseDetailActivity :
407407 COURSE_STORAGE_SCRAP -> lifecycleScope.launch {
408408 screenRefreshEventBus.emit(ScreenRefreshEvent .RefreshStorageScrap )
409409 }
410- COURSE_DISCOVER -> setActivityResult<MainActivity >()
411410 COURSE_DISCOVER_SEARCH -> setActivityResult<DiscoverSearchActivity >()
412411 MY_PAGE_UPLOAD_COURSE -> setActivityResult<MyUploadActivity >()
412+ COURSE_DISCOVER , null -> {
413+ navigateToMainScreen()
414+ return
415+ }
413416 }
414417
415418 finish()
You can’t perform that action at this time.
0 commit comments