Fixed
Status Update
Comments
bl...@google.com <bl...@google.com>
ab...@google.com <ab...@google.com>
ya...@gmail.com <ya...@gmail.com> #2
Thanks for the feedback. To help us troubleshoot this issue further, we will need more information. Please share detailed reproduction steps and as much as possible of the following information when it applies if you haven’t already:
1. Android Studio version and OS type and version
2. Screenshots or videos of the issue
3. idea.log file (select Help > Show Log in Finder / Explorer)
4. Thread dumps if the issue is a freezing or non-responding UI.
For more information on what’s needed and how to obtain this information please read the guide athttps://developer.android.com/studio/report-bugs#studio-bugs
1. Android Studio version and OS type and version
2. Screenshots or videos of the issue
3. idea.log file (select Help > Show Log in Finder / Explorer)
4. Thread dumps if the issue is a freezing or non-responding UI.
For more information on what’s needed and how to obtain this information please read the guide at
su...@google.com <su...@google.com> #3
in the flamingo version, the Java option is not available and it only
supports Kotlin and Java and secondly and the build gradle has these
recurring issues whenever I connect it to Firebase. Sometimes it does not
show any error but whenever I use the app. It says that the app is not
working.
On Tue, Apr 18, 2023 at 2:45 PM <buganizer-system@google.com> wrote:
supports Kotlin and Java and secondly and the build gradle has these
recurring issues whenever I connect it to Firebase. Sometimes it does not
show any error but whenever I use the app. It says that the app is not
working.
On Tue, Apr 18, 2023 at 2:45 PM <buganizer-system@google.com> wrote:
ya...@gmail.com <ya...@gmail.com> #4
Hello, and thanks for filing this issue! It sounds like there may actually be two issues presented here:
- The Empty Activity project template no longer supports Java.
- An app that attempts to connect to Firebase doesn't launch.
For #1, I believe this was an intentional change. Empty Activity is essentially what "Empty Compose Activity" used to be, and Compose cannot be used with Java.
For #2, could you please provide more details on what's going wrong with your app? For example, the next time it says it isn't working, can you go to Help → Show Log in Explorer and attach your idea.log
to this bug? It may be helpful to have the other details requested in
su...@google.com <su...@google.com> #5
But why does the empty activity has kotlin as default language and there is
no option to change it?
On Fri, Apr 21, 2023, 2:55 AM <buganizer-system@google.com> wrote:
no option to change it?
On Fri, Apr 21, 2023, 2:55 AM <buganizer-system@google.com> wrote:
Description
I created a bug to track this performance hit, as it should only be transitory.
(similar situation initially reported by customer
SELECT tags, COUNT(*) c, ANY_VALUE(b.value)
FROM `bigquery-public-data.stackoverflow.posts_questions` a
LEFT JOIN (SELECT x.value FROM UNNEST((
SELECT APPROX_TOP_COUNT(tags, 10000)
FROM `bigquery-public-data.stackoverflow.posts_questions`
)) x ) b
ON a.tags=b.value
WHERE b.value IS NULL
GROUP BY 1
ORDER BY 2 DESC
LIMIT 1000
12 seconds, fh-bigquery:US.bquijob_3c0fdf82_1661f6f3dd1
SELECT tags, COUNT(*) c
FROM `bigquery-public-data.stackoverflow.posts_questions`
WHERE tags NOT IN(SELECT x.value FROM UNNEST((
SELECT APPROX_TOP_COUNT(tags, 10000)
FROM `bigquery-public-data.stackoverflow.posts_questions`
)) x)
GROUP BY 1
ORDER BY 2 DESC, 1
LIMIT 1000
> 350 seconds, fh-bigquery:US.bquijob_766cc8ab_1661f7023bb
SELECT tags, COUNT(*) c
FROM `bigquery-public-data.stackoverflow.posts_questions`
WHERE NOT EXISTS(SELECT x.value FROM UNNEST((
SELECT APPROX_TOP_COUNT(tags, 10000)
FROM `bigquery-public-data.stackoverflow.posts_questions`
)) x WHERE tags=value)
GROUP BY 1
ORDER BY 2 DESC, 1
LIMIT 1000
> 350 seconds, fh-bigquery:US.bquijob_59a9d1e6_1661f59db40