Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
e
os
GmsCore
Commits
3075bf1a
Verified
Commit
3075bf1a
authored
Jul 01, 2021
by
Marvin W.
🐿
Browse files
Cronet: Don't bundle API for now
Fixes #1506
parent
d8e50cb3
Changes
1
Hide whitespace changes
Inline
Side-by-side
play-services-cronet-core/build.gradle
View file @
3075bf1a
...
...
@@ -8,7 +8,11 @@ apply plugin: 'maven-publish'
apply
plugin:
'signing'
dependencies
{
implementation
(
"org.microg:cronet-api:$cronetVersion"
)
// TODO: Embedding the API causes random crashes as the Android AOT compiler will link the native implementation to
// out API classes even if embedded by a third-party app that comes with their own API classes.
// Need to find a better way to disable AOT for Cronet. Could be by packaging cronet as it's own apk that is
// embedded in the main APK but only loaded at runtime so that the AOT compiler has no way to become active.
// implementation("org.microg:cronet-api:$cronetVersion")
implementation
(
"org.microg:cronet-common:$cronetVersion"
)
implementation
(
"org.microg:cronet-native:$cronetVersion"
)
}
...
...
Write
Preview
Supports
Markdown
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