Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] - f-droid version 3.8.1 black screen on Android Auto #218

Open
jtasseroul opened this issue Apr 8, 2024 · 5 comments
Open

[BUG] - f-droid version 3.8.1 black screen on Android Auto #218

jtasseroul opened this issue Apr 8, 2024 · 5 comments

Comments

@jtasseroul
Copy link

jtasseroul commented Apr 8, 2024

Describe the bug

The 3.8.1 version of the app works as expected when installed from GitHub apk. The f-droid version is added to the app selection screen of AA, but display is black when launched.

Expected behavior

Should work like the apk, I suppose ?

To Reproduce

Install f-droid version of the app, launch Tempo from Android Auto app selection drawer

Environment

  • Android device: Oneplus Nord 2
  • Android OS version: OxygenOS 13/Android 13
  • App version: 3.8.1
  • Other relevant details: Android Auto 11.5.641024

Logs or Screenshots

Additional context

@drezin2112
Copy link

Having the same issue. Works great just wish it worked with AA

@jtasseroul
Copy link
Author

jtasseroul commented May 27, 2024 via email

@drezin2112
Copy link

drezin2112 commented May 27, 2024 via email

@drezin2112
Copy link

drezin2112 commented May 30, 2024 via email

@drezin2112
Copy link

Try this I found,

How to use Android Debug Bridge (ADB) to view android logs

Step 1. Install ADB on Your Computer
Ensure you have Android SDK Platform Tools installed on your computer. If not, download the platform tools from the Android developer website: (https://developer.android.com/studio/releases/platform-tools) and install them. 

Step 2. Enable Developer Options
a) On your Android device, go to "Settings".
b) Scroll down and select "About phone" or "About device".
c) Locate the "Build number" entry and tap it multiple times (usually seven) until you see a message indicating that Developer Options have been enabled. 

Step 3. Enable USB Debugging
a) In the "Settings" menu, go to "System" or "System & updates" (depending on your device).
b) Select "Developer options." Toggle on "USB debugging".

Step 4. Connect Your Android Device to the Computer
a) Use a USB cable to connect your Android device to the computer.
b) On your Android device, when prompted, allow USB debugging access from the computer. 

Step 5. Open a Command Prompt or Terminal
On your computer, open a Command Prompt (Windows) or Terminal (macOS/Linux). 

Step 6.Navigate to the ADB Directory
Change the directory in the Command Prompt or Terminal to where the ADB executable is located. If you installed Android SDK Platform Tools in the default location, you can type the following command: C:\path\to\platform-tools\.
Replace "C:\path\to\platform-tools" with the actual path to the platform-tools directory.

Step 7. Verify Device Connection
a) To ensure your device is connected and recognized by ADB, type the following command on CMD prompt and press Enter: adb devices.
A list of connected devices will be displayed. If your device is listed, you are good to proceed.
b) If the device is not visible, it's probable that you lack the necessary device drivers. To find and download the required adb drivers for device X on your PC, use a web browser and search (e.g., via Google, Yahoo). Install the drivers with administrative privileges.
c) Verify if adb devices lists the device in question. If the device appears as unauthorized, disconnect it, then reconnect it and accept the prompt to trust the PC.

Step 8. View Android Logs using LogCat
a) To view Android logs, use the LogCat command. Type the following command and press Enter:adb logcat.
This will start displaying the real-time logs from your Android device in form of a text file.
b) Navigate to c:/adb in your file explorer, where the "txt" file holds the collected logs.

Step 9. Filter Logs (Optional)
To filter logs by priority level (e.g., verbose, debug, info, warn, error, and assert), you can use the following command: adb logcat :.
Replace with the desired log level (e.g., "verbose" or "error") and with the tag of the component or app you want to filter. 

Step 10. Stop LogCat (Optional)
To stop displaying the logs in the Command Prompt or Terminal, press "Ctrl + C" on Windows or "Cmd + C" on macOS/Linux. 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants