mirror of
https://github.com/AllanWang/Frost-for-Facebook.git
synced 2024-11-10 04:52:38 +01:00
Hardcode const value
This commit is contained in:
parent
b71c73565f
commit
b47900cbf8
@ -29,12 +29,15 @@ const val FB_LOGIN_URL = "${FB_URL_BASE}login"
|
||||
const val FB_HOME_URL = "${FB_URL_BASE}home.php"
|
||||
|
||||
// Default user agent
|
||||
const val USER_AGENT_MOBILE =
|
||||
private const val USER_AGENT_MOBILE_CONST =
|
||||
"Mozilla/5.0 (Linux; Android 8.0.0; ONEPLUS A3000) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36"
|
||||
// Desktop agent, for pages like messages
|
||||
const val USER_AGENT_DESKTOP =
|
||||
private const val USER_AGENT_DESKTOP_CONST =
|
||||
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Safari/537.36"
|
||||
|
||||
const val USER_AGENT_MOBILE = USER_AGENT_DESKTOP_CONST
|
||||
const val USER_AGENT_DESKTOP = USER_AGENT_DESKTOP_CONST
|
||||
|
||||
/**
|
||||
* Animation transition delay, just to ensure that the styles
|
||||
* have properly set in
|
||||
|
@ -33,6 +33,7 @@ import com.pitchedapps.frost.db.CookieEntity
|
||||
import com.pitchedapps.frost.facebook.FB_LOGIN_URL
|
||||
import com.pitchedapps.frost.facebook.FB_USER_MATCHER
|
||||
import com.pitchedapps.frost.facebook.FbCookie
|
||||
import com.pitchedapps.frost.facebook.USER_AGENT_MOBILE
|
||||
import com.pitchedapps.frost.facebook.get
|
||||
import com.pitchedapps.frost.injectors.CssHider
|
||||
import com.pitchedapps.frost.injectors.jsInject
|
||||
@ -57,6 +58,7 @@ class LoginWebView @JvmOverloads constructor(
|
||||
@SuppressLint("SetJavaScriptEnabled")
|
||||
private fun setupWebview() {
|
||||
settings.javaScriptEnabled = true
|
||||
settings.userAgentString = USER_AGENT_MOBILE
|
||||
setLayerType(View.LAYER_TYPE_HARDWARE, null)
|
||||
webViewClient = LoginClient()
|
||||
webChromeClient = LoginChromeClient()
|
||||
|
Loading…
Reference in New Issue
Block a user