I can't enable the module. My site is showing views_json is a dependency, but that module I no longer being maintained.y site is production, so I can't put aodule that is 4 years old and not being maintained up.
Drupal 7- most up to date
I have all other dependencies installed.

Comments

tyler.frankenstein’s picture

Status: Active » Closed (works as designed)

You need the Views Datasource module, which contains a sub module called Views JSON.

To elaborate on this, the reason folks get confused on this is because the dependency is listed as views_json in drupalgap.info, which is a sub module of views_datasource. The way Drush sees views_json is the old deprecated version of the module, and there doesn't appear to be a way (that I know of) to tell Drush that views_json is actually a sub module of views_datasource. Also, views_datasource can't be listed as a module dependency in drupalgap.info, because even though the machine name of the project is views_datasource, there isn't actually a module inside the project with a machine name of views_datasource.

To get around this, you need to manually download views_datasource first, then enable DrupalGap.

drush dl views_datasource
drush dl drupalgap
drush en drupalgap
mwangi’s picture

Thanks,

was looking for this information too.

I had disabled the dependency but that was not working.

Apprecited!

sumanthkumarc’s picture

Thank You, It worked for me :)