Follow the below steps to change file system format of SD card from Fat32 to NTFS on Linux. 1. Check SD card from file system: $ fdisk -l ...
Posts tagged Research
OpenGL Rendering Pipeline
Pipeline Overview OpenGL-managed memory buffers (vertex buffers) contains below two array types Vertex Array – this later projected into ...
Interrupt Handling in OP-TEE
World switches through Secure Monitor Call (SMC). A secure interrupt is signaled by the ARM GIC (Generic Interrupt Controller). There are two ...
How to create custom framework APIs
On this post, we will learn how to modify or create framework APIs on AOSP (Android Open Source Project). Before start, let’s set a build ...
Types of apps and frameworks
Native Apps are built with native APIs from specific platform such as IOS, Android, and BlackBerry. Pros High performance. Supports push ...
Methodology: Qualitative vs. Quantitative
These two terms can be used as research methods. Qualitative used to gain an understanding of underlying reasons, opinions, and motivations ...
White Box, Black Box, and Gray Box
In software testing, there are three different types of testing depending on how much knowledge the testers have on the software being tested. ...
Testing Methods
These are currently popular methods to test software. Fuzz Testing Input massive invalid, unexpected, or random data(Fuzz) to find errors or ...
compileSdkVersion, minSdkVersion, and targetSdkVersion
compileSdkVersion can choose which version of Android SDK to compile the app with strongly recommended to compile with latest SDK (the app ...
4 ways to handle button click
1. New OnClickListener in setOnClickListener’s parameter 2. Inner class OnClickListener 3. Implements OnClickListener interface & ...