Hola, tengo un problema a la hora de crear una DB usando SQLiteOpenHelper, 
Ejecuto esto: 
   public void onCreate(SQLiteDatabase db)
    {
        Log.i(  "DBManager",
                "Creando BBDD " + DB_NOMBRE + " v" + DB_VERSION);
        try {
            db.beginTransaction();
            db.execSQL( "CREATE TABLE IF NOT EXISTS " + TABLA_USUARIO + "( "
                    + USUARIO_EMAIL + " string(255) PRIMARY KEY NOT NULL, "
                    + USUARIO_PASSWORD + " int NOT NULL)");
            db.setTransactionSuccessful();
        }
        catch(SQLException exc)
        {
            Log.e( "DBManager.onCreate", exc.getMessage() );
        }
        finally {
            db.endTransaction();
        }
    }
Y cuando lo ejecuto, obtengo el mensaje 	
adb E 11-26 13:27:30 41850 18929357 usb_osx.cpp:152] Unable to create an interface plug-in (e00002be)
Alguna idea de como resolverlo? lo estoy corriendo en mac
