Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
com.ccwangluo.accelerator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sheteng
com.ccwangluo.accelerator
Commits
21ceb3af
Commit
21ceb3af
authored
Apr 16, 2021
by
Mygod
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prevent crashing on shitty ROMs
parent
850bccd6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
core/src/main/java/com/github/shadowsocks/Core.kt
core/src/main/java/com/github/shadowsocks/Core.kt
+6
-2
No files found.
core/src/main/java/com/github/shadowsocks/Core.kt
View file @
21ceb3af
...
@@ -73,8 +73,12 @@ object Core : Configuration.Provider {
...
@@ -73,8 +73,12 @@ object Core : Configuration.Provider {
val
packageInfo
:
PackageInfo
by
lazy
{
getPackageInfo
(
app
.
packageName
)
}
val
packageInfo
:
PackageInfo
by
lazy
{
getPackageInfo
(
app
.
packageName
)
}
val
deviceStorage
by
lazy
{
if
(
Build
.
VERSION
.
SDK_INT
<
24
)
app
else
DeviceStorageApp
(
app
)
}
val
deviceStorage
by
lazy
{
if
(
Build
.
VERSION
.
SDK_INT
<
24
)
app
else
DeviceStorageApp
(
app
)
}
val
directBootSupported
by
lazy
{
val
directBootSupported
by
lazy
{
Build
.
VERSION
.
SDK_INT
>=
24
&&
app
.
getSystemService
<
DevicePolicyManager
>()
?.
storageEncryptionStatus
==
Build
.
VERSION
.
SDK_INT
>=
24
&&
try
{
DevicePolicyManager
.
ENCRYPTION_STATUS_ACTIVE_PER_USER
app
.
getSystemService
<
DevicePolicyManager
>()
?.
storageEncryptionStatus
==
DevicePolicyManager
.
ENCRYPTION_STATUS_ACTIVE_PER_USER
}
catch
(
_
:
RuntimeException
)
{
false
}
}
}
val
activeProfileIds
get
()
=
ProfileManager
.
getProfile
(
DataStore
.
profileId
).
let
{
val
activeProfileIds
get
()
=
ProfileManager
.
getProfile
(
DataStore
.
profileId
).
let
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment