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

When Selecting Keyboard Get Message About Lock Screen

It is there.

You need to first have the F-Droid app, and then add a repository to it in the settings.

This repository has many, many apps that are excellent.

https://apt.izzysoft.de/fdroid/repo...7B6D966BE743BF0EEE49C2561B9BA39073711F628937A

If you have the F-Droid app, clicking the link above may take you directly to the repository settings add page in the app.

Okay, I just clicked on the link to it that you provided in your last post on my desktop and it comes up with a 404 Page Not Found error. So I assumed it was no longer available. I clicked on the link to read about it first.

AC Market

Everytime I've download AC Market (no matter where I get the download from or how safe the site says that the app is, even AC Markets legitimate site) I always get a big VIRUS ALERT from both virus scanners I have which are ESET and Kaspersky.

Android/TrojanDownloader.Agent.KE

What's up with that?
ACMarket is a completely safe application. By installing it, our device will not be infected with any virus or malicious code.

Help Copy and Paste on Android

Thank you very much for your complete and clear answer. I've got another problem and I hope you won't be embarrassed. As you've mentioned, "there are about 20-25 other previously saved/copied items". Where can we see all these things at once? I mean how can we access the clipboard? Is it depend on the device model or the same method for all Android devices?

On my Samsung, I long press and tap clipboard.

Screenshot_2020-10-26-13-38-11.png


Screenshot_2020-10-26-13-38-25.png

Root Rooting device for full control - Solved

The ROOTING process for the Z1 Compact has been completed.

It did not work with the method of the video in the previous post because that method is not meant for Z1 Compact. I tried to used a method of a similar phone but it did not work. It caused the O/S to stop working completely.

I learned that Sony has provided official tools on their support websites that can unlock most if not all the Sony Xperia phones bootloader. They also provide tools that work on Flashmode which is used to restore any corrupted O/S but it only works if the bootloader is unlocked. I tested these methods on both of my Sony Xperia phones and it worked well.

The method that did work but also needed to find some of the requirements separately is in the below video.



Unlocking the bootloader did cause all the settings to reset.


Congratulations on a job well done @Johncoool ;)

ADB reverse and TCP communication

Hi

I have Android Studio 4.1, with ubuntu 18.04 in a VMWare Virtual Machine on a Windows 10 laptop. I have connected (using USB3) a Samsung Active 2 Tab up to the laptop (USB3) and Android Studio communicates with it. I can get an app to run on the device from Android Studio and with the help of ADB's command reverse, I can create a server in an Ubuntu terminal in the VM that the app on the device can then read from using Sockets.

First thing I do is:
Code:
mike@ubuntu:~$ adb reverse tcp:1234 tcp:1234

The client code on the device is simple:
Java:
Socket socket = new Socket(hostname, port);
InputStreamReader input = new InputStreamReader(ocket.getInputStream(), StandardCharsets.UTF_8);
BufferedReader br = new BufferedReader(input);
String msg = br.readLine();
Log.i("MESSAGE SAYS: ", msg);
input.close();

The server in the Ubuntu terminal is even simpler:
Code:
mike@ubuntu:~$ nc -l 1234
hello

logcat in Android Studio displays the response the client gets from the server:
Code:
MESSAGE SAYS: hello

So my question (whew, sorry about so much blabber above):, is this actually a TCP operation or is adb doing the actual bridging (listening and doing some sort of loopback) with the network traffic? In other words, can USB3 actually have a TCP connection?

Thanks...

Filter

Back
Top Bottom