Status Update
Comments
ra...@google.com <ra...@google.com> #2
i donnot understand why is the data the same?
ch...@google.com <ch...@google.com> #3
il...@gmail.com <il...@gmail.com> #4
What steps are needed to reproduce this issue? Frequency of occurrence?
Which Android build are you using? (e.g. AP4A.241205.013.A1)
Which device did you use to reproduce this issue?
Can you confirm if this issue is reproducible on a Pixel/Nexus device?
Please provide a sample project or apk to reproduce the issue. Also mention the steps to be followed for reproducing the issue with the given sample project or apk.
Android bug report (to be captured after reproducing the issue)
For steps to capture a bug report, please refer:
Alternate method
Navigate to “Developer options”, ensure “USB debugging” is enabled, then enable “Bug report shortcut”. Capture bug report by holding the power button and selecting the “Take bug report” option.
Note: Please upload the bug report and screenshot to google drive and share the folder to android-bugreport@google.com, then share the link here.
ch...@google.com <ch...@google.com> #5
Please provide the requested information to proceed further. Unfortunately the issue will be closed within 7 days if there is no further update.
ap...@google.com <ap...@google.com> #6
for example,we hava 100 users.
20 users returned the same location information, longitude is 121.474000 and latitude is 31.230001。
30 users returned the same location information, longitude is 122.474000 and latitude is 32.230001。
15 users returned the same location information, longitude is 120.474000 and latitude is 30.230001。
as for Android build,all versions have it.
I dont reprodouce this issue.
what may be the cause of this issue?please
ap...@google.com <ap...@google.com> #7
We have shared this with our product and engineering team and will update this issue with more information as it becomes available.
ch...@google.com <ch...@google.com> #8
Thanks for reporting this issue.
COARSE_LOCATION typically takes location information from the nearby cell tower. If many users are near the same cell tower, each of those users will be given the same position. Using a FINE position will give much more detailed information.
Also, in certain areas, for privacy reasons, a less-exact location will be given, and that less-exact location might be identical for many users. Again, a fine-location configuration will return more precise location data.
il...@gmail.com <il...@gmail.com> #9
We believe with reference to the above comment, your query has been answered, hence closing the bug. Please feel free to re-open the issue in the future if desired.
ap...@google.com <ap...@google.com> #10
ap...@google.com <ap...@google.com> #11
Branch: 8.1
commit 6ffe085ffe3dca175ac081e15578632fb664047d
Author: Christoffer Quist Adamsen <christofferqa@google.com>
Date: Thu Jun 01 10:54:13 2023
Fix inadequate force inlining with startup profile
Bug:
Change-Id: Idc8fbd95cd3973401d47b3c9182cfbe28b0abbb8
M src/main/java/com/android/tools/r8/features/FeatureSplitBoundaryOptimizationUtils.java
M src/test/java/com/android/tools/r8/startup/ForceInlineAfterVerticalClassMergingStartupTest.java
ap...@google.com <ap...@google.com> #12
Branch: 8.1
commit 625220633518a12c5d97f7888a3616bea959c0a4
Author: Christoffer Quist Adamsen <christofferqa@google.com>
Date: Thu Jun 01 10:54:03 2023
Reproduce inadequate force inlining with startup profile
Bug:
Change-Id: I2e1b46e672d54294882de7fdaf9ee5c2fb4a5a26
A src/test/java/com/android/tools/r8/startup/ForceInlineAfterVerticalClassMergingStartupTest.java
ra...@google.com <ra...@google.com> #13
Can you please try using a new R8 version in the build to see if that resolves your issue ? You should be able to do something like:
pluginManagement {
buildscript {
repositories {
google()
mavenCentral()
maven {
url = uri("https://storage.googleapis.com/r8-releases/raw/main")
}
}
dependencies {
// https://r8.googlesource.com/r8/+log/refs/heads/main
classpath("com.android.tools:r8:7cfc5b65a937a35a9f5b8afa1cdccb1fb1ee03c4")
}
}
// ...
}
il...@gmail.com <il...@gmail.com> #14
Hi! Yes, the issue is now resolved with the newest R8 revisions. Thank you!
sg...@google.com <sg...@google.com> #15
Thanks for trying out the latest main
revision. The fix is merged to the release branch for 8.1, so you should consider using:
pluginManagement {
buildscript {
repositories {
google()
mavenCentral()
maven {
url = uri("https://storage.googleapis.com/r8-releases/raw")
}
}
dependencies {
// https://r8.googlesource.com/r8/+log/refs/heads/8.1
classpath("com.android.tools:r8:8.1.53")
}
}
// ...
}
Description
Hello team! I'm trying to play around with startup profiles and dex-startup-optimization, but the final build results in the next exception. Any ideas on how can we debug and troubleshoot it?
Devices/Android versions reproduced on: Pixel 6 Pro
Env:
Deps: