Extension ID: br.com.redesurftank.aneawesomeutils
AneAwesomeUtils is an Adobe AIR Native Extension (ANE) that provides advanced networking, security, device utilities, and platform-specific features for Windows, Android, macOS, and iOS.
| Feature | Windows | Android | macOS | iOS |
|---|---|---|---|---|
| HTTP Client (HTTP/2, TLS 1.3, Happy Eyeballs) | x | x | x | x |
| WebSocket (binary mode) | x | x | x | x |
| mTLS Client Certificates | x | x | x | x |
| Static DNS / Host Resolution | x | x | x | x |
| Compression / Decompression | x | x | x | x |
| File I/O | x | x | x | x |
| XML to Object Mapping | x | x | x | x |
| Native Logging (file, rotation, crash detection) | x | x | x | x |
| Device Unique ID | x | x | x | x |
| Emulator / VM Detection | x | x | ||
| Network State Monitoring | x | |||
| Screen Capture Prevention | x | |||
| Input Filtering (anti-cheat) | x | |||
| Speed Hack Detection | x | |||
| Audio Safety Hook | x | |||
Deep Profiler .aneprof |
x | |||
| Battery Optimization | x | |||
| Connection Configuration | x |
| Platform | Min Version | Architecture |
|---|---|---|
| Windows | 7 SP1 | x86, x86-64 |
| Android | API 22 (5.1) | arm64-v8a, armeabi-v7a |
| macOS | 10.12 (Sierra) | x86-64 |
| iOS | 12.2 | arm64 |
// 1. Check support
if (!AneAwesomeUtils.isSupported) return;
// 2. Initialize (once)
var ok:Boolean = AneAwesomeUtils.instance.initialize();
// 3. Use it
AneAwesomeUtils.instance.loadUrl("https://api.example.com/data", "GET",
null, null,
function(response:ByteArray):void { trace(response.toString()); },
function(error:Error):void { trace(error.message); }
);See Getting Started for full installation and setup instructions.
- Getting Started - Installation, app descriptor, initialization
- HTTP Client - URL loading with HTTP/2, progress, custom headers
- WebSocket - Binary WebSocket connections
- mTLS Client Certificates - Mutual TLS authentication
- Static DNS / Host Resolution - Custom DNS mapping
- Utilities - Compression, file I/O, XML parsing, device ID, emulator detection
- Windows Features - Screen capture, input filtering, speed hack detection, audio hook
- Deep Profiler
.aneprof- Windows memory/performance profiler usage, AS3 API flags and CLI tools - Android Features - Battery optimization, connection config, network monitoring
- Logging - Native file logging, crash detection, cross-ANE shared logging
- Happy Eyeballs (RFC 8305) - Fast dual-stack IPv4/IPv6 connection racing
- HTTP/2 with automatic HTTP/1.1 fallback
- TLS 1.3 for improved security and performance
- Custom DNS - Cloudflare + Google DNS by default, configurable static hosts
| File | Description |
|---|---|
AneBuild/br.com.redesurftank.aneawesomeutils.ane |
Packaged ANE (all platforms) |
AneBuild/windows-32/AneAwesomeUtilsWindows.dll |
Windows x86 native |
AneBuild/windows-64/AneAwesomeUtilsWindows.dll |
Windows x64 native |
AndroidNative/app/build/outputs/aar/app-debug.aar |
Android native |
AppleNative/build/AneAwesomeUtils.framework |
macOS native |
AppleNative/build/libAneAwesomeUtils-IOS.a |
iOS native |
Proprietary.