Status Update
Comments
ta...@gmail.com <ta...@gmail.com> #2
Androidx.activity actually doesn't do anything with those APIs and this behavior comes from the framework. Moving it to that component.
ak...@mixedanalytics.com <ak...@mixedanalytics.com> #3
Thank you for letting me know. Then which subject should we have instead of Android Public Tracker > App Development > Jetpack (androidx) > Activity ?
je...@perkins.org <je...@perkins.org> #4
Android Public Tracker > Framework is the correct component for framework issues.
jo...@google.com <jo...@google.com> #5
Please provide the following additional information:
Please mention the steps to be followed for reproducing the issue with the given sample apk.
Android bug report capturing
After reproducing the issue, press the volume up, volume down, and power button simultaneously. This will capture a bug report on your device in the “bug reports” directory.
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.
Screen record of the issue, for clarity
Please capture screen record or video of the issue using following steps:
adb shell screenrecord /sdcard/video.mp4
Subsequently use following command to pull the recorded file:
adb pull /sdcard/video.mp4
Note: Please upload the files to google drive and share the folder to android-bugreport@google.com, then share the link here.
ta...@gmail.com <ta...@gmail.com> #6
1 - If you click on "click me" button in the 1st Activity, 2nd Activity will start with option bundle. 2 - If you search in searchView, button in the 2nd Activity will be gone. 3 - click on device home button and then resume the app again, button in 2nd activity becomes visible which is unexpected. 4 - if you search again, click on device home button and resume the app again, button in the 2nd Activity will be gone as expected. (Unexpected behavior happens just in the 1st search)
Bug report capturing :
Screen recording :
Sample code :
APK :
jo...@google.com <jo...@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.
ta...@gmail.com <ta...@gmail.com> #8
There's no specific code that can be provided to reproduce this.
jo...@google.com <jo...@google.com> #9
Hello there!
Without any code I can't start an investigation trying to reproduce the problematic behaviour. Please, create a new blank project with a sample script that creates triggers with a similar approach as your original app. If that new project is published and replicates the issue, please share its code so I can study it better.
ta...@gmail.com <ta...@gmail.com> #10
One important thing to note: THIS CAN ONLY BE REPRODUCED IF THE PROJECT IS PUBLISHED AS A SHEETS ADD-ON.
Here are the steps we used to reproduce the problem:
1. Create 3 blank G-Sheets documents and create hourly trigger in each document via “Create Trigger” menu (see create-trigger-menu.png)
2. Make sure all triggers run, in our case they ran 5 times during 5 hours (see triggers-list.png)
3. Go to “Edit trigger” window and just press “Save” button. We did it for the first two triggers (see modify-trigger.png)
4. This caused the 2 triggers to stop and never fire again. The trigger ids are 6CFa7J1dRkeWfK4PbHAHHA and WHAd1CcdSbqeGSlO74qwxg.
The 3rd trigger is still running, id =c1et5snyQPCZJCGmCYYfKQ. See triggers-stopped.png
Please see the test add-on code below.
Code.gs:
function createTrigger ()
{
var triggerId = ScriptApp.newTrigger("runTrigger").timeBased().everyHours(1).create().getUniqueId();
SpreadsheetApp.getUi().alert('Trigger created Id=' + triggerId);
}
function removeTriggers ()
{
removeUserTriggers();
removeProjectTriggers();
}
function removeUserTriggers ()
{
ScriptApp.getUserTriggers(SpreadsheetApp.getActiveSpreadsheet()).forEach(function (trigger) {
if (trigger)
{
var id = trigger.getUniqueId();
ScriptApp.deleteTrigger(trigger);
SpreadsheetApp.getUi().alert('Removed User Trigge id=' + id);
}
});
}
function removeProjectTriggers() {
ScriptApp.getProjectTriggers().forEach(function (trigger) {
if (trigger)
{
var id = trigger.getUniqueId();
ScriptApp.deleteTrigger(trigger);
SpreadsheetApp.getUi().alert('Removed Project Trigger id=' + id);
}
});
};
function runTrigger ()
{
Logger.log ("trigger executed");
var range = SpreadsheetApp.getActiveSpreadsheet().getRange("A1");
var d = new Date();
var currentTime = d.toLocaleTimeString();
range.setValue(currentTime);
}
function onOpen(e) {
SpreadsheetApp.getUi()
.createAddonMenu()
.addItem('Create Trigger', 'createTrigger')
.addItem('Remove All Triggers', 'removeTriggers')
.addToUi();
}
Description
What we've noticed is these triggers sometimes just disappear. We confirm it by going to Edit -> All your triggers.
We do not delete the triggers from our code, so the only explanation is that Google kills them for some reason.
Under what circumstances can Google kill an automatic hourly trigger without any notice?