[SOLVED] Cannot import com.google.gson.Gson

Hey guys,

I need to implement a library for JSON processing. It’s recommended to use Gson by google. But somehow I cannot import it. Hue bindings for example just uses

import com.google.gson.Gson

I thought Gson comes with ESH by default. What do I have to do to make it accessible?

You probably need to include the package import in the MANIFEST.MF:

Import-Package: com.google.gson,

Dunno why, but I reinstalled ESH and it was possible. Thanks anyway.