Fixed
Status Update
Comments
do...@traveloka.com <do...@traveloka.com> #2
One reason that makes this option better than recent tasks:
I can't take a screenshot of outside the tasks.
I can't even take screenshot of the recent tasks itself.
See here:
https://issuetracker.google.com/issues/158720125
I can't take a screenshot of outside the tasks.
I can't even take screenshot of the recent tasks itself.
See here:
pa...@gmail.com <pa...@gmail.com> #3
Thank you for the report. We’ve shared this with our product and engineering teams and will continue to provide updates as more information becomes available.
pa...@gmail.com <pa...@gmail.com> #4
I agree, biggest disappointment about the new power menu is the lack of the screenshot button
ga...@google.com <ga...@google.com> #5
Yeah bring it back please. I used it so often
pa...@google.com <pa...@google.com> #6
I can agree that's how I take all my screenshots and it feels weird not having it there
ap...@google.com <ap...@google.com> #7
Why mark as duplicate to a place that isn't accessible to anyone?
pa...@google.com <pa...@google.com> #8
agree, please bring back screenshot button when I click power button
pa...@gmail.com <pa...@gmail.com> #9
For those who haven't seen it the screenshot button is there when you hold the home button to view recently used apps
hu...@google.com <hu...@google.com> #10
@9 You don't hold home button to show recent tasks, even since Android 3.x...
And showing the recent tasks, it's not a real screenshot of what's shown. It's a screenshot of the tasks you choose.
If you want to take a screenshot that includes the notifications, for example, you can't do it using this method.
And showing the recent tasks, it's not a real screenshot of what's shown. It's a screenshot of the tasks you choose.
If you want to take a screenshot that includes the notifications, for example, you can't do it using this method.
Description
Java version "1.8.0_121"
Jetifier version: 1.0.0-beta04
Let there be a Library Foo with the following 'proguard-rules.txt' file:
# DBFlow
-keep class * extends com.raizlabs.android.dbflow.config.DatabaseHolder { *; }
-dontwarn com.raizlabs.android.dbflow.**
# Note: the configuration keeps the entry point 'com.raizlabs.android.dbflow.config.FlowManager$GlobalDatabaseHolder { FlowManager$GlobalDatabaseHolder(com.raizlabs.android.dbflow.config.FlowManager$1); }', but not the descriptor class 'com.raizlabs.android.dbflow.config.FlowManager$1'
-keep class com.raizlabs.android.dbflow.config.FlowManager$*
When trying to jetify this library:
./jetifier-standalone -i /Users/someuser/Downloads/foo/foo.aar -o newfoo.aar
The Jetifier fails with the following output:
Exception in thread "main" java.util.regex.PatternSyntaxException: Illegal repetition near index 147
com/raizlabs/android/dbflow/.*
# Note: the configuration keeps the entry point 'com/raizlabs/android/dbflow/config/FlowManager$GlobalDatabaseHolder { FlowManager$GlobalDatabaseHolder(com/raizlabs/android/dbflow/config/FlowManager$1); }'
^
at java.util.regex.Pattern.error(Pattern.java:1955)
at java.util.regex.Pattern.closure(Pattern.java:3157)
at java.util.regex.Pattern.sequence(Pattern.java:2134)
at java.util.regex.Pattern.expr(Pattern.java:1996)
at java.util.regex.Pattern.compile(Pattern.java:1696)
at java.util.regex.Pattern.<init>(Pattern.java:1351)
at java.util.regex.Pattern.compile(Pattern.java:1028)
at com.android.tools.build.jetifier.core.type.TypesMap.matchOldProguardForNewTypes(TypesMap.kt:112)
[...]
If i remove the notes, the new 'proguard-rules.txt' looks like this:
# DBFlow
-keep class * extends com.raizlabs.android.dbflow.config.DatabaseHolder { *; }
-dontwarn com.raizlabs.android.dbflow.**
-keep class com.raizlabs.android.dbflow.config.FlowManager$*
And this runs through the jetifier just fine. Please provide a fix for this issue, since i have to patch my dependencies currently in order to make AndroidX work for me.