File tree Expand file tree Collapse file tree 6 files changed +436
-2
lines changed Expand file tree Collapse file tree 6 files changed +436
-2
lines changed Original file line number Diff line number Diff line change 141
141
android : name =" android.support.FILE_PROVIDER_PATHS"
142
142
android : resource =" @xml/provider_paths" />
143
143
</provider >
144
+
144
145
<activity
145
146
android : name =" .mobile.activities.VideoPlayerActivity"
146
147
android : configChanges =" orientation|screenSize"
147
148
android : exported =" true"
148
149
android : label =" @string/title_mobile_activity_video_player"
149
150
android : theme =" @style/Theme.BVMobile" />
151
+ <activity
152
+ android : name =" .mobile.activities.LoginActivity"
153
+ android : exported =" false"
154
+ android : label =" @string/title_mobile_activity_login"
155
+ android : theme =" @style/Theme.BVMobile" />
150
156
</application >
151
157
152
158
</manifest >
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ fun CookiesDialog(
146
146
}
147
147
148
148
@Serializable
149
- private data class CookiesData (
149
+ data class CookiesData (
150
150
@SerialName(" DedeUserID" )
151
151
val uid : Long ,
152
152
@SerialName(" DedeUserID__ckMd5" )
Original file line number Diff line number Diff line change
1
+ package dev.aaa1115910.bv.mobile.activities
2
+
3
+ import android.os.Bundle
4
+ import androidx.activity.ComponentActivity
5
+ import androidx.activity.compose.setContent
6
+ import dev.aaa1115910.bv.mobile.screen.LoginScreen
7
+ import dev.aaa1115910.bv.mobile.theme.BVMobileTheme
8
+
9
+ class LoginActivity : ComponentActivity () {
10
+ override fun onCreate (savedInstanceState : Bundle ? ) {
11
+ super .onCreate(savedInstanceState)
12
+ setContent {
13
+ BVMobileTheme {
14
+ LoginScreen ()
15
+ }
16
+ }
17
+ }
18
+ }
You can’t perform that action at this time.
0 commit comments