refactor!: rename extension store bridge ABI to repo across all layers

Coordinated rename of the nine store-named bridge surfaces: Go
exports (InitExtensionStoreJSON -> InitExtensionRepoJSON etc.),
method-channel strings, the Kotlin and Swift handlers, and the Dart
PlatformBridge methods. Channel strings verified 1:1 across
Dart/Kotlin/Swift; gomobile bindings match the new export names.
Android MediaStore APIs untouched. store_registry_url pref key kept
for existing users. Local Android/iOS builds need the gobackend
AAR/xcframework rebuilt; CI does this in the release workflow.
This commit is contained in:
zarzet
2026-07-14 09:09:29 +07:00
parent 2273d9ba48
commit c4e266a5b9
7 changed files with 107 additions and 107 deletions
@@ -3397,64 +3397,64 @@ class MainActivity: FlutterFragmentActivity() {
}
result.success(response)
}
"initExtensionStore" -> {
"initExtensionRepo" -> {
val cacheDir = call.argument<String>("cache_dir") ?: ""
withContext(Dispatchers.IO) {
Gobackend.initExtensionStoreJSON(cacheDir)
Gobackend.initExtensionRepoJSON(cacheDir)
}
result.success(null)
}
"setStoreRegistryUrl" -> {
"setRepoRegistryUrl" -> {
val registryUrl = call.argument<String>("registry_url") ?: ""
withContext(Dispatchers.IO) {
Gobackend.setStoreRegistryURLJSON(registryUrl)
Gobackend.setRepoRegistryURLJSON(registryUrl)
}
result.success(null)
}
"getStoreRegistryUrl" -> {
"getRepoRegistryUrl" -> {
val response = withContext(Dispatchers.IO) {
Gobackend.getStoreRegistryURLJSON()
Gobackend.getRepoRegistryURLJSON()
}
result.success(response)
}
"clearStoreRegistryUrl" -> {
"clearRepoRegistryUrl" -> {
withContext(Dispatchers.IO) {
Gobackend.clearStoreRegistryURLJSON()
Gobackend.clearRepoRegistryURLJSON()
}
result.success(null)
}
"getStoreExtensions" -> {
"getRepoExtensions" -> {
val forceRefresh = call.argument<Boolean>("force_refresh") ?: false
val response = withContext(Dispatchers.IO) {
Gobackend.getStoreExtensionsJSON(forceRefresh)
Gobackend.getRepoExtensionsJSON(forceRefresh)
}
result.success(response)
}
"searchStoreExtensions" -> {
"searchRepoExtensions" -> {
val query = call.argument<String>("query") ?: ""
val category = call.argument<String>("category") ?: ""
val response = withContext(Dispatchers.IO) {
Gobackend.searchStoreExtensionsJSON(query, category)
Gobackend.searchRepoExtensionsJSON(query, category)
}
result.success(response)
}
"getStoreCategories" -> {
"getRepoCategories" -> {
val response = withContext(Dispatchers.IO) {
Gobackend.getStoreCategoriesJSON()
Gobackend.getRepoCategoriesJSON()
}
result.success(response)
}
"downloadStoreExtension" -> {
"downloadRepoExtension" -> {
val extensionId = call.argument<String>("extension_id") ?: ""
val destDir = call.argument<String>("dest_dir") ?: ""
val response = withContext(Dispatchers.IO) {
Gobackend.downloadStoreExtensionJSON(extensionId, destDir)
Gobackend.downloadRepoExtensionJSON(extensionId, destDir)
}
result.success(response)
}
"clearStoreCache" -> {
"clearRepoCache" -> {
withContext(Dispatchers.IO) {
Gobackend.clearStoreCacheJSON()
Gobackend.clearRepoCacheJSON()
}
result.success(null)
}