#kotlin#android#gfw#proxy#shadowsocks#sing_box#trojan#vmess#vpn
NekoBox for Android is a free, open-source app that helps you use many types of proxy servers like Shadowsocks, VMess, Trojan, and WireGuard to browse the internet securely and anonymously. It creates an encrypted VPN tunnel on your device, protecting your data from snooping and letting you bypass geo-restrictions or blocked websites. You can manage multiple proxy accounts easily in one app. It supports popular subscription formats for easy setup and is regularly updated by its community. Avoid the Google Play version since it’s no longer open source; download it safely from the official GitHub releases instead. This tool benefits you by enhancing privacy, security, and internet freedom on your Android device.
https://github.com/MatsuriDayo/NekoBoxForAndroid
🚀 Вышел стабильный JavaScript движок от Google для Android
Новая стабильная библиотека Jetpack JavaScript Engine позволит разработчикам выполнять JS код в изолированной и ограниченной среде.
class MainActivity : ComponentActivity() {
// Теперь nullable, без lateinit
private var jsSandbox: JavaScriptSandbox? = null
private var jsIsolate: JavaScriptIsolate? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
if (!JavaScriptSandbox.isSupported()) {
Log.e("JS", "JavaScriptSandbox не поддерживается")
return
}
lifecycleScope.launch {
// Создаём и сохраняем в nullable-поле
jsSandbox = JavaScriptSandbox
.createConnectedInstanceAsync(applicationContext)
.await()
jsIsolate = jsSandbox?.createIsolate()
// При выполнении гарантируем, что jsIsolate != null
val result: String = jsIsolate
?.evaluateJavaScriptAsync(JS_SCRIPT_SCRING)
?.await()
?: "Ошибка: isolate не инициализирован"
Log.d("JS", "Результат выполнения: $result")
}
}
override fun onDestroy() {
super.onDestroy()
// Закрываем только если не null
jsIsolate?.close()
jsSandbox?.close()
}
}
#jetpack#js