🌐Weekly News Digest [ December 22 – December 28 ]
That was a week of delays, resumptions and terminations of resource projects.
💡Here are the key highlights:
🇨🇩 DR Congo
- DRC bans processing units from accepting ore from artisanal miners
🇬🇦 Gabon
- Gabon announces an audit of the mining sector
🇬🇭 Ghana
- Ghana’s only oil refinery resumes operations after years of downtime
🇬🇼 Guinea
- Guinea is planning its first mining conference
🇲🇼 Malawi
- An Australian company delays its niobium project
🇲🇿 Mozambique
- President and TotalEnergies clash over Cabo Delgado gas project schedule
🇳🇪 Niger
- Niger’s exports exceed imports, driven by oil
🇳🇬 Nigeria
- Nigeria to resume oil exploration in Ogoniland
🇸🇩 Sudan
- China’s CNPC is seeking to terminate its oil contracts amid war
#NewsDigest
➡️ Follow to stay informed - @devilsbelow
🚀 Вышел стабильный 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