node-sword-interface 1.0.118 → 1.0.119

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-sword-interface",
3
- "version": "1.0.118",
3
+ "version": "1.0.119",
4
4
  "description": "Javascript (N-API) interface to SWORD library",
5
5
  "keywords": [
6
6
  "C++",
@@ -224,15 +224,15 @@ vector<string> RepositoryInterface::getRepoNames()
224
224
  if (source != "STEP Bible") {
225
225
  #endif
226
226
 
227
- #if TARGET_OS_IOS
228
- // eBible.org repository is excluded on iOS / iPadOS, because we could not reliably
227
+ #if TARGET_OS_IOS || defined(__ANDROID__)
228
+ // eBible.org repository is excluded on iOS / iPadOS and Android, because we could not reliably
229
229
  // get it to a working state on these platforms (as of 2026-04-03).
230
230
  if (source != "eBible.org") {
231
231
  #endif
232
232
 
233
233
  sourceNames.push_back(source);
234
234
 
235
- #if TARGET_OS_IOS
235
+ #if TARGET_OS_IOS || defined(__ANDROID__)
236
236
  }
237
237
  #endif
238
238