Obsolete
Status Update
Comments
se...@google.com <se...@google.com>
se...@google.com <se...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-master-dev
commit 1e5efa0794e826bc1b3b153796ed5659fb97fca2
Author: Ian Lake <ilake@google.com>
Date: Fri Feb 08 10:23:54 2019
Prefer exact matching deep links
Instead of only taking into account the
number of matching arguments for deep link
matching, always prefer exact matches.
Test: updated tests
BUG: 123969518
Change-Id: Ibd8ab5b6ba251991fa994ebd297bcb9ffb5851bd
M navigation/common/src/androidTest/java/androidx/navigation/NavDestinationAndroidTest.kt
M navigation/common/src/androidTest/java/androidx/navigation/NavGraphAndroidTest.kt
M navigation/common/src/main/java/androidx/navigation/NavDeepLink.java
M navigation/common/src/main/java/androidx/navigation/NavDestination.java
https://android-review.googlesource.com/898367
https://goto.google.com/android-sha1/1e5efa0794e826bc1b3b153796ed5659fb97fca2
Branch: androidx-master-dev
commit 1e5efa0794e826bc1b3b153796ed5659fb97fca2
Author: Ian Lake <ilake@google.com>
Date: Fri Feb 08 10:23:54 2019
Prefer exact matching deep links
Instead of only taking into account the
number of matching arguments for deep link
matching, always prefer exact matches.
Test: updated tests
BUG: 123969518
Change-Id: Ibd8ab5b6ba251991fa994ebd297bcb9ffb5851bd
M navigation/common/src/androidTest/java/androidx/navigation/NavDestinationAndroidTest.kt
M navigation/common/src/androidTest/java/androidx/navigation/NavGraphAndroidTest.kt
M navigation/common/src/main/java/androidx/navigation/NavDeepLink.java
M navigation/common/src/main/java/androidx/navigation/NavDestination.java
ca...@princeton.edu <ca...@princeton.edu> #3
This is fixed internally and will be available in Navigation 1.0.0-beta02 - we'll always prefer an exact deep match link (where exact means your deep link does not contain any .* or {param} tags)
ca...@princeton.edu <ca...@princeton.edu> #4
The columns got dropped from the data Here are CSV versions. I do not thin the data really matters, just that there are two charts on two sheets.
Data for chart 1:
A,1
B,2
C,3
D,4
Data for chart 2:
,A,B,C
AA,1,10,20
BB,2,11,21
CC,3,13,22
Data for chart 1:
A,1
B,2
C,3
D,4
Data for chart 2:
,A,B,C
AA,1,10,20
BB,2,11,21
CC,3,13,22
se...@google.com <se...@google.com> #5
Hi,
Thank you for your answers!
I have reported this issue internally.
Regards.
Description
First, please search through existing issues to ensure that the bug has not already been reported. You can start the search here:
If the issue has already been reported, you can click the star next to the issue number to subscribe and receive updates. We prioritize responding to the issues with the most stars. You can also comment on the issue to provide any details of your experience with it.
If your issue has not been reported, please provide all of the following:
-----------------------------------------------------------------------------------------------------------------------------
A short description of the issue:
I have a script that has been running without fail for months, which suddenly started failing yesterday. The script grabs a chart from a spreadsheet as an image/png. From what I can tell this should still be working.
A small code sample that reliably reproduces the issue. The sample should run as-is or with minimal setup, without external dependencies.
I have tried different image types, and different charts, but the issue still persists.
Here is a small code snippet the reproduces the issue:
function myFunction() {
var analyticsSheet = SpreadsheetApp.openById('1UDp7worfP2QttdaEY77ZgaK9vMvAufVh9j8WZjYDsK8');
var sheet = analyticsSheet.getSheetByName("Library Aquisitions Comparison");
var charts = sheet.getCharts();
var chart = charts[0];
chart = chart.modify().setOption('width', 624).setOption('height', 382);
chart = chart.build();
var chartImage = chart.getAs('image/jpeg');
}
What is the expected output? What do you see instead? If you see error messages, please provide them.
Exception: Service Spreadsheets failed while accessing document with id 1UDp7worfP2QttdaEY77ZgaK9vMvAufVh9j8WZjYDsK8.
myFunction @
Please provide any additional information below.