getDebugInstructions function

Future<String> getDebugInstructions()

πŸ“‹ INSTRUÇÕES DE DEBUG

Implementation

Future<String> getDebugInstructions() async {
  return '''
πŸ”§ COMANDOS DE DEBUG:

πŸ“± ADB LOGCAT:
β€’ VPN: adb logcat | grep "🌐 \\[VPN\\]"
β€’ Keywords: adb logcat | grep "πŸ” \\[KEYWORD"
β€’ Geral: adb logcat | grep "πŸ”\\|🌐\\|🚨"

πŸ§ͺ MΓ‰TODOS DE TESTE:
β€’ await diagnosticCompleteSystem()
β€’ await testKeywordDetection()
β€’ await debugCurrentConfig()

πŸ”§ EM CASO DE PROBLEMAS:
β€’ await emergencyStop()
β€’ await repairSystem()

πŸ“‹ FLUXO RECOMENDADO:
1. await requestVpnPermission()
2. await requestAccessibilityPermission()
3. await startBlockerVpn()
4. await startBlockerKeywords(['bet', 'casino'], redirectRoute: '/block')
''';
}