Mobile Architect
> Systems Engineering // Kernel Interactions // Cross-Platform
Android Internals
Deep diving into the OS. Root/Shizuku privileges, NDK integration, and hidden API exploitation.
Flutter Architecture
Building pixel-perfect interfaces at 120fps. Method channels, FFI, and complex state management.
Mobile Security
Analyzing attack surfaces. Intent interception, downgrade attacks, and forensic data recovery.
Ai-Eze & Intent Hooks
Why open an app when the system can do it for you? Ai-Eze hooks directly into the Android PROCESS_TEXT intent.
- Context Menu IntegrationSelect text -> "Ai-Eze" -> Instant Summary/Translation.View Source →
<activity android:name=".ProcessTextActivity">
<intent-filter>
<action android:name="android.intent.action.PROCESS_TEXT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
</activity>// Collision Resistance Algorithm
void startAdvertising() {
final baseInterval = 200;
final jitter = Random().nextInt(100);
// Staggered advertising prevents
// packet collision in 200+ device environments
_ble.advertise(
interval: baseInterval + jitter,
data: _getEncryptedPayload(),
);
}Attend & AnonChat
Handling 200+ concurrent devices isn't just an app problem; it's a physics problem.
Engineered a custom BLE protocol achieving ~55% collision reduction and implemented SSE for battery-efficient real-time updates.
Open Source & R&D
Pushing boundaries on mobile and web.
InfiniKit
PLAY STOREAdvanced Power Tools with Lockdown Mode and Hidden API shortcuts.
IIITK Resources
FLUTTERAcademic hub serving 800+ students with CI/CD auto-builds.
NetworkSwitch
CONTRIBUTIONRefactored Root/Shizuku logic for Android 14+ restrictions.
Smart PDF
GEMINI RAGSplit-screen RAG tool for high-accuracy document querying.
Flutter Web SEO
NEXT.JS PROXYSolved SEO limitations via reverse-proxy architecture.
The art of "Breaking In"
WhatsApp Downgrade Attack
Automated extraction of encryption keys using ADB backup/restore exploits. Force-downgrades to a debuggable version to dump .crypt14/15 databases.
TowerLink Cellular Monitor
Bypassing Android's background execution limits with persistent Foreground Services to log real-time LTE/5G signal strength and cell handover events.
View Code →
