@bsky.app/expo-guess-language 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -30,6 +30,9 @@ class ExpoGuessLanguageModule : Module() {
30
30
  return@Property isPlayServicesAvailable
31
31
  }
32
32
 
33
+ // No-op: sync detection on Android is handled by lande in JS
34
+ Function("guessLanguageSync") { _: String, _: Int -> emptyList<Bundle>() }
35
+
33
36
  AsyncFunction("guessLanguageAsync") { text: String, maxResults: Int ->
34
37
  if (text.isBlank()) return@AsyncFunction emptyList<Bundle>()
35
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bsky.app/expo-guess-language",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Guess the language of a text snippet using native APIs",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",