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

Bit.ly page

Something similar happens on my phone and it is very annoying. So far not able to fix it with the recommended actions. Hope you get this resolved.
Think I figured it out. Go to app. manager, Samsung internet, uninstall all previous updates, wipe app. data, restart phone. I did this and so far it is working. No more bit.ly or other wierd pages loading on their own. Hope this helps.

Root LineageOS 15.1 for LG L40 D170

"breakfast" is meant to pull the desired device trees and such from official Repo's, and either or both:
  • Official Los may not have the trees their device repos
  • May not have a lineage_w5.mk file in that particular tree due to the fact the older versions only needed one named "lineage.mk".. Change the name.
  • Add an AndroidProducts.mk file that points to lineage_w5.mk, or if AndroidProducts.mk already exists, open make sure the file points to the correct one. Personally, I usually keep both files in the trees for "just in case"..

Flashlight

View network connections is more of a status permission to determine if there is an internet connection and if so, is it data or wifi. This allows the dev to disable features on data to save data for the user. Can also be used to disable features when there is no internet to save battery.
Thank you for that extremely clear description of why that permission is used (and can be a good thing).

My calls seem to be forwarded nyo another number as well

My ex husband has done this before and I believe he is doing this by somehow accessing my Gmail info. FYI he also has a Advertising Agency and us very Computer Smart. He is possibly sending me emails or text that are links that are pretending to be something else than what they are to put softwares on my device. How do I solve this issue. He pays for my WIFI and also know that info he is the primary user on the account. How do I solve this issue?

Android Studio 3.5.0, CMake, and "External Build Files"

What command makes the Project "Android" tree show all CMake CMakeLists.txt and .cmake files used in a project in a "External Build Files" category?

This seems to show up upon invoking "Run", but not any other way I have tried. Some releases back this used to show up automatically when one sync'ed with Gradle files. Now the only thing that seems to do it is "Run" (whereas for a while I couldn't get this display at all).

This display is *very* useful to me -- and I'm left wondering if there's another way to trigger this than "Run".

How to undo the Verizon Installation.

If I do a factory reset, would that take care of the issue?

Perhaps, but you might not need to. If you actually saw those Verizon apps getting installed after you installed that Verizon SIM card, those apps are probably installed as typical user-level apps. Have you tried Uninstalling them?
Go into your Settings >> Apps menu, find and open any Verizon-centric apps in the list, tap on 'Force stop' and find the 'Clear data' for each,and then tap on 'Uninstall'.
Be sure to use 'Clear data', that wipes the app's cache but most importantly any settings/configuration files for that app.

Edit:
Try restarting your phone into its Safe Mode. When running in Safe Mode it's just the Android operating system, with no third-party apps getting pre-loaded. If those Verizon apps don't load up in Safe Mode at least you know they are user-level apps and not system-level apps.
https://www.hardreset.info/devices/samsung/samsung-galaxy-s9-plus/safe-mode/
Another thing to try before a Factory Reset is to try wiping the system cache partition. You need to restart your phone into its Recovery Mode to access the option to do it though. Follow these directions to get into Recovery:
https://www.hardreset.info/devices/samsung/samsung-galaxy-s9-plus/recovery-mode/
and then select the 'wipe cache partition' option. Reboot and see if the same problem is occurring.

If you do opt to do a Factory Reset, don't forget to back up all your data first.

Android Studio 3.5 - Can't Debug Library androidTest with NDK

I upgraded to Android Studio 3.5 yesterday. I am no longer able to debug an androidTest (instrumented) on a library that has NDK sources. This only happens if there is an externalNativeBuild and the project is set to build as a library (not an app). If either of these are not true, debugging works. Depending on the emulator used, the process hangs on "Instantiating tests" and causes the emulator to freeze up, or immediately exists with the message "Cannot get process architecture". This was working fine in 3.4. I am running Android Studio on macOS. I am able to reproduce this by creating a new "Native C++" project, changing the plugin to "com.android.library" and commenting out the applicationId. Any help getting around this, and with how to file a bug for Android Studio, would be greatly appreciated, thank you!.

On-Demand Initialization in WorkManager

This page https://developer.android.com/topic...nager/advanced/custom-configuration#on-demand
says that you need to extend the interface from the Application class. I turned off the default initializer, but then I can not understand the documentation. By default, AppCompatActivity is used for the main activity, and when I change it to Application, some methods inside stop working.
Someone help me understand this moment and do it right

E-mail client with a customized notification about specific mails

In terms of K9 - I can't even sign up on my gmail.
It's been a while since I used K9, but it is possible to sign in to GMail. You'll need to set an "application password" because it doesn't support GMail's current default initialisation/authentication. In fact I'm sure the error message you got will have told you that it would need an application-specific password. Go into you Google account settings, you'll find "App Passwords" in there under "Security" and can generate a new one there. Then use that in K9 for the email account password.

Help Please help me login again into my Account

Okay i will try to connect Cheetah mobile but what about my other apps why are they all removed? Is there a way to stop Facebook from removing my apps? thank you.
No, there isn't. Facebook have not removed the app, they have decided that those apps cannot use Facebook logins, and that decision is entirely within Facebook's domain.

You might wonder why they've done this though? Facebook's business is data-mining, so in general they want as much information about your activities as possible. Hence they want people to use Facebook for login to as many things as they can. So why would Facebook cut themselves off from information like that? The most obvious possibility, especially in light of their various other scandals in the last few years, is that they've decided that a connection to those apps is enough of a liability that they are better off without them. And honestly, if they think they are a threat to a reputation as poor as Facebook's, you have to wonder...

Getting white noise when splitting PCM byte array

This is the part of the code which getting only few last seconds of PCM byte array which is recorded by AudioRecorder class:

ArrayList<Byte> local = new ArrayList<>();
if (readedBytes.size() > RECORDER_SAMPLERATE * 10) {
for (int i = readedBytes.size() - 1 - RECORDER_SAMPLERATE * 10; i < readedBytes.size() - 1; i++) {
local.add(readedBytes.get(i));
}
} else {
local.addAll(readedBytes);
}

byte[] array;
array = new byte[local.size()];

for (int i = 0; i < array.length; i++) {
array = local.get(i);
}

The problem is that, when I have to cut the first part of the array, I'm receiving only the whitenoize.Important: After this proccess I add the .wav header and this works if the array was not cut.

Filter

Back
Top Bottom