Online APK Analyzer - Extract App Information
Recently I've created the following online tool
The tool can be used to dissect Android APK files and extract various information stored in AndroidManifest.xml and other important files. Most of its logic was written in C/C++ and compiled into WebAssembly.
I sometimes fin...
Cross-compiling OpenCV from sources and using it in my Android apps has long time been on my todo list.
I like to play with images and graphics stuff and OpenCV offers a lot of features related to image processing. Recently I found some free time and created my Pano Stitch & Crop app which uses...
Android 7.0 Nougat (API level 24) introduced the native camera API, which finally allowed fine-grained control of camera directly from C++.
The new API allows you to access image data directly in C, without the need to pass them from Java. Therefore, there might be some (small) performance ga...
Android offers multiple ways to transfer apps and data between phones. The usual way of transferring apps from your old device to a new one is by using the Tap & Go feature.
In addition to Tap & Go, Android also allows you to copy apps and data using ADB. If you just want to copy one specific AP...
Making your app a device owner allows you to access some features that would normally require root. You can, for example, reboot the device, hide other installed apps, or restrict access to system settings. You can even perform silent app installs or grant dangerous permissions to apps.
What y...