• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Cast button greyed out

Hi guys

I have two smart TVs one Panasonic UHD and LG Full HD both support casting from a mobile device. Tonight I downloaded itv hub and tried to cast a show to my TV but for some reason in the app the cast button is darkened out and isn't clickable but works in YouTube

I thought this would of been the same for all apps which support casting

Thanks

Notifications Gone?

Since I got my 2XL almost 2 years ago, it has worked like this: When I got an email, text, missed call, etc., a badge would show up on the icon. If, say, an text or Whats App message was from my son, his contact photo would show on the text or Whats App icon on my home screen. I think if the message was from someone not in my contacts, then a number or some other image would show, I don't remember exactly as it became so normal, I almost did not notice.

In the past several weeks, those have stopped. Now when I get a message, the only thing that shows is the small icon up on the top notification area, nothing on the app icon itself down below.

I went into the settings to make sure "Notification Badges" was turned on and I can only find a setting to turn on "Notification Dots". That was turned on but no dots or badges show.

I have always used Nova Launcher with Tesla Unread. I saw that Tesla Unread had been discontinued and removed from the Google App Store so I uninstalled it. No change.

I don't know if this happened with a recent update or if I inadvertently changed a setting that I now can not find.

Can anyone help direct me what to check so I can get my badges back?

Thanks!

Roku TV

Does anybody on here have that? Does it work ok? How is it for movies and sports? I have a friend who's thinking of getting it. He wants to watch the games, movies, and Joe Kenda, who has a detective show. I hope it's easy to hook up because he's not good at that stuff.

Error: Invoke-customs are only supported starting with Android O (--min-api 26)

As myself and my collegue running same android code in different os.when my collegue run the code in ubuntu() its code was successfully running.

he shared the code via bitbucket i am cloning same code and try to running in win10 but i am facing following error throw:-
----------------------------


Error: Invoke-customs are only supported starting with Android O (--min-api 26)

stacktrace
-----------------------------


com.android.builder.dexing.DexArchiveBuilderException: Failed to process H:\projects\zinx-player1\app\build\intermediates\transforms\instantRun\debug\0
com.android.builder.dexing.DexArchiveBuilderException: Error while dexing.
com.android.tools.r8.CompilationFailedException: Compilation failed to complete
com.android.tools.r8.utils.AbortException: Error: Invoke-customs are only supported starting with Android O (--min-api 26)

i verified the following link to check version compactblity everything.but not clear my issue

https://stackoverflow.com/questions...-supported-starting-with-android-0-min-api-26

my basic config:
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
minSdkVersion 16
targetSdkVersion 28

renderscriptTargetApi 28
vectorDrawables.useSupportLibrary = true

applicationId 'com.arun.carapplication'

versionCode 170
versionName '1.2.0'
multiDexEnabled true
}

Attachments

  • Screenshot (68).png
    Screenshot (68).png
    130 KB · Views: 352

Root your Device without Any Damage/Risks to your Phone

Hello, guys
Here comes our big boy!
VMOS Virtual Master Operating System - Virtual Android System.
VMOS doubles your mobile Android System, free your control to the new system.
VMOS is an APP based on Virtual Machine (VM). VMOS could be installed in the form of a normal APP to Linux or Android System through VM technology.
Search VMOS on Google Play or click:
https://play.google.com/store/apps/details?id=com.vmos.glb&referrer=utm_source=Android%20Forums
if you like this idea!

Help How to clear the notification on the top taskbar

Hello All,

I recently purchased a Google Pixel 3A and I am new to the Android OS. I am having a slight annoying problem with the notification status. On the screensaver and top taskbar displays a notification of an app so tapping on notification opens the app. After responding to the message, the status of the notification is still there even though I already dealt with the notification. I have to clear the notification by swiping left or clicking on clear all. Is there a way to clear the notification without manually trying to clear it?

Thanks for any suggestions.

Help Bluetooth problem in the car

I have no bluetooth audio function in my car although I can make and receive phone calls via BT. I like to listen to podcasts in my car and use Podcast Addict to do this just using the phone with the volume high. When I turn on my phone in the car and turn on Podcast Addict the media volume on my phone gets switched off and I have to turn BT off and on to get the sound back on. This is quite irritating but the even stranger thing is that sometimes I get in the car and the sound stays on fine and I just get to play the podcast straightaway. This will go on for a week or so and then it will go back to cutting off the sound for a couple of weeks and so on.
I'm sorry if I've not explained this very well - I'm not sure I understand what's happening myself!

Crash Reports

My app is now on the Play store and I installed it from there. It crashed (thought I had fixed all of those) and gave me the option to submit a crash report with logs, which I did - but I can't find any info about the report I submitted. Last 14 days, All versions, Installed from anywhere - there is nothing there.

Am I looking in the wrong place or is my expectation wrong?

Data Connection

Hey guys, I'm having a small issue with my data connection.. I usually turn off my data when I'm not using it because I don't have wifi at home. But ever since this morning when I turn on my data it won't turn on.. the phone tells me the data is connect but nothing comes up on the status bar and no internet works.. any ideas??

How to monitor changes in mobile network connections?

Hello to all,

I've been, for several days in different sites, looking for a way to monitor when a network change occurs without success so far. This is show with a Toast message when the phone changes from 2G to 3G, 3G to LTE and vice versa.

I found that is needed to use TelephonyManager, Connectivity Manager and Broadcast Receiver.

So far I have the below code that shows the changes when phone is in WiFi, without connection or mobile data, but once is in status "Mobile data" is not reporting the changes between 2G, 3G, LTE anymore.

Is there a way to detect in the moment that occurs the mobile network type changes?

This is a Utility class code that I have so far working for android 6.

Code:
class NetworkUtil{

public static String getConnectivityStatusString(Context context) {
   String status = null;
   String mobile_status = null;

   ConnectivityManager cm = (ConnectivityManager) context
           .getSystemService(Context.CONNECTIVITY_SERVICE);

   NetworkInfo activeNetwork = cm.getActiveNetworkInfo();


   TelephonyManager mTelephonyManager = (TelephonyManager)
           context.getSystemService(Context.TELEPHONY_SERVICE);
   int networkType = mTelephonyManager.getNetworkType();
   switch (networkType) {
       case TelephonyManager.NETWORK_TYPE_GPRS:
       case TelephonyManager.NETWORK_TYPE_EDGE:
           mobile_status = "2G"; break;
       case TelephonyManager.NETWORK_TYPE_UMTS:
       case TelephonyManager.NETWORK_TYPE_HSPA:
           mobile_status = "3G"; break;
       default:
           mobile_status = "Unknown"; break;
   }


   if (activeNetwork != null) {
       if (activeNetwork.getType() == ConnectivityManager.TYPE_WIFI) {
           status = "Wifi enabled";
           return status;
       } else if (activeNetwork.getType() == ConnectivityManager.TYPE_MOBILE && mobile_status == "2G") {
           status = "2G enabled";
           return status;
       } else if (activeNetwork.getType() == ConnectivityManager.TYPE_MOBILE && mobile_status == "3G") {
           status = "3G enabled";
           return status;
       } else if (activeNetwork.getType() == ConnectivityManager.TYPE_MOBILE && mobile_status == "Unknown") {
           status = "Mobile unknown enabled";
           return status;
       }
   } else {
       status = "No internet is available";
       return status;
   }

   return status;
}
}

Thanks for any help.

Marketplace not loading

Hi all, Samsung J3 and today when going to Facebook's marketplace it will load the first item I touch but when going back and selecting a second it doesn't respond to my touch and nothing happens. Just marketplace, all other facebook selections work fine. Closing facebook and reopening I get to choose one item again but a second will not open. Any suggestions please.

Filter

Back
Top Bottom