John Byron Canuel

How to View the Package Name of A Google Play Application

Android apps use package name as their unique identification. In some references, it may also be called Application ID. Although there are some differences between the two, for most of us non-developers, it is the same. It usually consists of 3 parts, but it can have 2 parts as well. For example, the package ID of Mozilla’s …

How to View the Package Name of A Google Play Application Read More »

How to Find the Best Wi-Fi Channel for Your Router in Android

If you live in an apartment complex, you’ve probably noticed more than just the passive-aggressive network IDs that your neighbors use—very likely you’ve had problems with your wireless connections dropping out, or just not being as fast as you’d like. This often has to do with the Wi-Fi channels in your area. If your wireless router is …

How to Find the Best Wi-Fi Channel for Your Router in Android Read More »

How to see apps usage in flutter Application

Requirements: usage_stats | Flutter Package (pub.dev) API level 22 as a minimum! Steps that you should follow: Step 1: AndroidManifest.xml, add xmlns:tools and android.permission.PACKAGE_USAGE_STATS. Step 2: Permit usage access, see working demo picture at left. Sample Code: References:https://pub.dev/packages/usage_statshttps://stackoverflow.com/questions/63946804/how-to-see-apps-usage-using-flutter

How to View Passwords For Other Wi-Fi Networks In Windows 8 And 10

In Windows 10 and 8.1, you’ll have to use the command prompt to find a previous network’s password. Right-click the Start button and select “Command Prompt” to quickly open it. Then type in the following command: netsh wlan show profiles You’ll get a list of the Wi-Fi networks you’ve accessed before. To find the password …

How to View Passwords For Other Wi-Fi Networks In Windows 8 And 10 Read More »

How to migrate Older Version of Flutter to Flutter Android Embedding 2

In order to better support the execution environments of adding Flutter to an existing project, the old Android platform-side wrappers hosting the Flutter runtime at io.flutter.app.FlutterActivity and their associated classes are now deprecated. New wrappers at io.flutter.embedding.android.FlutterActivity and associated classes now replace them. Your existing full-Flutter projects aren’t immediately affected and will continue to work as before for the …

How to migrate Older Version of Flutter to Flutter Android Embedding 2 Read More »

How to Setup Connection Between Firebase Database and Flutter App

What is Firebase? Firebase is a cloud-based development platform best known for its real-time database, which is still a multi-node, key-value database specialized for synchronizing data between user computers or smartphones and centralized cloud storage. It’s made to make developers’ lives easier by taking care of a lot of the data pushing and pulling. This …

How to Setup Connection Between Firebase Database and Flutter App Read More »

How to Fix ‘INSTALL_FAILED_USER_RESTRICTED’ on Xiaomi Phones (Android Studio)

USB Debugging grants you a level of access to your device. This level of access is important when you need system-level clearance, such as when coding a new app. It also gives you much more freedom of control over your device. For example, with Android SDK, you gain direct access to your phone through your …

How to Fix ‘INSTALL_FAILED_USER_RESTRICTED’ on Xiaomi Phones (Android Studio) Read More »