Home  /  Tools Apps  / Visual Log for Android on Windows Pc

Visual Log for Android on Windows Pc

Developed By: Wenga

License: Free

Rating: 0,0/5 - 1 votes

Last Updated: December 28, 2023

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 1.0.3
Size 1 MB
Release Date October 30, 17
Category Tools Apps

What's New:
New Features:1 Fixed some bugs [see more]

Description from Developer:
Visual Log for Android could show log on mobile screen directly! If you are an android developer,you do not need check log in Android Studio or other IDE. If you are a tester, you... [read more]

App preview ([see all 7 screenshots])

App preview

About this app

On this page you can download Visual Log for Android and install on Windows PC. Visual Log for Android is free Tools app, developed by Wenga. Latest version of Visual Log for Android is 1.0.3, was released on 2017-10-30 (updated on 2023-12-28). Estimated number of the downloads is more than 10. Overall rating of Visual Log for Android is 0,0. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 1 users, 1 users had rated it 5*, 1 users had rated it 1*.

How to install Visual Log for Android on Windows?

Instruction on how to install Visual Log for Android on Windows 10 Windows 11 PC & Laptop

In this post, I am going to show you how to install Visual Log for Android on Windows PC by using Android App Player such as BlueStacks, LDPlayer, Nox, KOPlayer, ...

Before you start, you will need to download the APK/XAPK installer file, you can find download button on top of this page. Save it to easy-to-find location.

[Note] You can also download older versions of this app on bottom of this page.

Below you will find a detailed step-by-step guide, but I want to give you a fast overview of how it works. All you need is an emulator that will emulate an Android device on your Windows PC and then you can install applications and use it - you see you're playing it on Android, but this runs not on a smartphone or tablet, it runs on a PC.

If this doesn't work on your PC, or you cannot install, comment here and we will help you!

Step By Step Guide To Install Visual Log for Android using BlueStacks

  1. Download and Install BlueStacks at: https://www.bluestacks.com. The installation procedure is quite simple. After successful installation, open the Bluestacks emulator. It may take some time to load the Bluestacks app initially. Once it is opened, you should be able to see the Home screen of Bluestacks.
  2. Open the APK/XAPK file: Double-click the APK/XAPK file to launch BlueStacks and install the application. If your APK/XAPK file doesn't automatically open BlueStacks, right-click on it and select Open with... Browse to the BlueStacks. You can also drag-and-drop the APK/XAPK file onto the BlueStacks home screen
  3. Once installed, click "Visual Log for Android" icon on the home screen to start using, it'll work like a charm :D

[Note 1] For better performance and compatibility, choose BlueStacks 5 Nougat 64-bit read more

[Note 2] about Bluetooth: At the moment, support for Bluetooth is not available on BlueStacks. Hence, apps that require control of Bluetooth may not work on BlueStacks.

How to install Visual Log for Android on Windows PC using NoxPlayer

  1. Download & Install NoxPlayer at: https://www.bignox.com. The installation is easy to carry out.
  2. Drag the APK/XAPK file to the NoxPlayer interface and drop it to install
  3. The installation process will take place quickly. After successful installation, you can find "Visual Log for Android" on the home screen of NoxPlayer, just click to open it.

Discussion

(*) is required

Download older versions

Other versions available: 1.0.3.

Download Visual Log for Android 1.0.3 on Windows PC – 1 MB

Visual Log for Android could show log on mobile screen directly! If you are an android developer,you do not need check log in Android Studio or other IDE. If you are a tester, you could capture some logs more convenient!

Add VisualLogger to your project (More to see https://github.com/onlywenga/VisualLogger)
// Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' } <-- add this line
}
}
// Add the dependency in project build.gradle
dependencies {
compile 'com.github.onlywenga:VisualLogger:v1.0.0' <-- add this line
}

// Init VisualLogger and Use it
public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
VisualLog.init(this); <-- add this line just once
setContentView(R.layout.activity_main);
if(DEBUG){
VisualLog.d("MainActivity","onCreate"); <-- use it anywhere you want
}
}
}

Tips:
* click log level mark to filter same level.
* long click item to filter same tag.
* click item to switch sample/complex mode.
* click floating button to open/close floating log.

About Permission:
* android.permission.INTERNET
Sorry for showing banner advertisement in home page.

* android.permission.SYSTEM_ALERT_WINDOW
An important permission to show floating log layer.

* android.permission.WRITE_EXTERNAL_STORAGE
If you want to export log, you need grant this permission
New Features:
1 Fixed some bugs