JSON Software for Mobile Operating Systems

Browse free open source JSON software and projects for Mobile Operating Systems below. Use the toggles on the left to filter open source JSON software by OS, license, language, programming language, and project status.

  • Translate docs, audio, and videos in real time with Google AI Icon
    Translate docs, audio, and videos in real time with Google AI

    Make your content and apps multilingual with fast, dynamic machine translation available in thousands of language pairs.

    Google Cloud’s AI-powered APIs help you translate documents, websites, apps, audio files, videos, and more at scale with best-in-class quality and enterprise-grade control and security.
  • Intelligent network automation for businesses and organizations Icon
    Intelligent network automation for businesses and organizations

    Network automation for the hybrid multi-cloud era

    BackBox seamlessly integrates with network monitoring and NetOps platforms and automates configuration backups, restores, and change detection. BackBox also provides before and after config diffs for change management, and automated remediation of discovered network security issues.
  • 1
    gSOAP Toolkit

    gSOAP Toolkit

    Development toolkit for Web Services and XML data bindings for C & C++

    The gSOAP toolkit is an extensive suite of portable C and C++ software to develop XML Web services with powerful type-safe XML data bindings. Easy-to-use code-generator tools allow you to directly integrate XML data in C and C++. Serializes native application data in XML. Includes WSDL/XSD schema binding and auto-coding tools, stub/skeleton compiler, Web server integration with Apache module and IIS extension, high-performance XML processing with schema validation, fast MIME/MTOM streaming, SOAP and REST Web API development, WS-* protocols (WS-Security, WS-Policy, WS-ReliableMessaging, etc), XML-RPC and JSON. Licensed under GPLv2. Visit the developer center with guides, tutorials, and examples at www.genivia.com/dev.html The documentation of the toolkit, libraries, plugins and more is available at www.genivia.com/docs.html Commercial-use licenses and expert technical support services are available at competitive pricing levels, please visit www.genivia.com/products.html
    Leader badge
    Downloads: 387 This Week
    Last Update:
    See Project
  • 2
    open-dis

    open-dis

    Open-DIS implements the IEEE DIS protocol in multiple languages.

    An open source implementation of the Distributed Interactive Simulation (IEEE-1278) standard in C++, C-Sharp, Objective-C, Java, Javascript and XML. Example applications including sending and receiving native DIS traffic, X-Plane plugin, and WebSocket/Javascript/WebGL applications. See the individual code directories for each package of interest. This project is inactive and has migrated to a GitHub project at https://github.com/open-dis
    Downloads: 10 This Week
    Last Update:
    See Project
  • 3

    CRMFacil Mobile

    An application for mobile devices for CRMFacil

    An application for sales force to introduce orders, complaints and new costumers.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4
    FeedKit

    FeedKit

    An RSS, Atom and JSON Feed parser written in Swift

    FeedKit is an RSS, Atom and JSON Feed parser written in Swift. Build a URL pointing to an RSS, Atom or JSON Feed. A common scenario in UI environments would be parsing a feed asynchronously from a user-initiated action, such as the touch of a button. Remember, you are responsible for manually bringing the resulting closure to whichever queue is appropriate. Usually to the Main thread, for UI apps, by calling DispatchQueue.main.async. FeedKit adopts Swift 5 Result type, as Result<Feed, ParserError>, and as such, if parsing succeeds you should now have a Strongly Typed Model of an RSS, Atom or JSON Feed, within the Feed enum. The RSS and Atom feed Models are rather extensive throughout the supported namespaces.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Desktop and Mobile Device Management Software Icon
    Desktop and Mobile Device Management Software

    It's a modern take on desktop management that can be scaled as per organizational needs.

    Desktop Central is a unified endpoint management (UEM) solution that helps in managing servers, laptops, desktops, smartphones, and tablets from a central location.
  • 5
    GCDWebServer

    GCDWebServer

    The #1 HTTP server for iOS, macOS & tvOS

    GCDWebServer is a modern and lightweight GCD based HTTP 1.1 server designed to be embedded in iOS, macOS & tvOS apps. Elegant and easy to use architecture with only 4 core classes: server, connection, request and response. Well designed API with fully documented headers for easy integration and customization. Entirely built with an event-driven design using Grand Central Dispatch for best performance and concurrency. No dependencies on third-party source code. Parser for web forms submitted using "application/x-www-form-urlencoded" or "multipart/form-data" encodings (including file uploads). Allow implementation of fully asynchronous handlers of incoming HTTP requests. Minimize memory usage with disk streaming of large HTTP request or response bodies. Automatically handle transitions between foreground, background and suspended modes in iOS apps. Full support for both IPv4 and IPv6.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    HandyJSON

    HandyJSON

    A handy swift json-object serialization/deserialization library

    HandyJSON is a framework written in Swift which makes converting model objects( pure classes/structs ) to and from JSON easy on iOS. Compared with others, the most significant feature of HandyJSON is that it does not require the objects inherit from NSObject(not using KVC but reflection), nor implements a 'mapping' function(writing value to memory directly to achieve property assignment). HandyJSON is totally dependent on the memory layout rules inferred from Swift runtime code. We are watching it and will follow every bit if it changes. To support deserialization from JSON, a class/struct needs to conform to 'HandyJSON' protocol. It's truly protocol, not some class inherited from NSObject. For struct, since the compiler provides a default empty initializer, we use it for free. HandyJSON supports deserialization from the designated path of JSON.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7
    ObjectMapper

    ObjectMapper

    Simple JSON Object mapping written in Swift

    ObjectMapper is a framework written in Swift that makes it easy for you to convert your model objects (classes and structs) to and from JSON. Once your class implements Mappable, ObjectMapper allows you to easily convert to and from JSON. Use functions to validate JSON prior to object serialization provide an existing cached object to be used for mapping, return an object of another type (which also conforms to BaseMappable) to be used for mapping. For instance, you may inspect the JSON to infer the type of object that should be used for mapping. ObjectMapper supports dot notation within keys for easy mapping of nested objects. ObjectMapper also supports custom transforms that convert values during the mapping process. To use a transform, simply create a tuple with map["field_name"] and the transform of your choice on the right side of the <- operator.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    This project has moved! Go to https://github.com/yenrab/qcdbsync
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9
    JSON is a lightweight data-interchange format. It can represents integer, real number, string, an ordered sequence of value, and a collection of name/value pairs. QJson is a qt-based library that maps JSON data to QVariant objects.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Find out just how much your login box can do for your customer | Auth0 Icon
    Find out just how much your login box can do for your customer | Auth0

    With over 53 social login options, you can fast-track the signup and login experience for users.

    From improving customer experience through seamless sign-on to making MFA as easy as a click of a button – your login box must find the right balance between user convenience, privacy and security.
  • 10
    SwiftyJSON

    SwiftyJSON

    Facilitates the use of JSON data in Swift

    Swift is strictly specific about types. But even if explicit typing is good for avoiding making mistakes, it becomes painful when we're dealing with JSON and other aspects that are, by definition, implicit about types. SwiftyJSON, however, facilitates the use of JSON data in Swift.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    Wireless Music Sync for BlackBerry
    Wireless Music Sync for BlackBerry® keeps the music on your BlackBerry® devices in sync with your Desktop music library wirelessly. It presently works with iTunes on Windows. It is fast and easy to setup and use.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12
    Wrap

    Wrap

    The easy to use Swift JSON encoder

    Wrap is an easy-to-use Swift JSON encoder. Don't spend hours writing JSON encoding code - just wrap it instead. Using Wrap is as easy as calling wrap() on any instance of a class or struct that you wish to encode. It automatically encodes all of your type’s properties, including nested objects, collections, enums and more. It also provides a suite of simple but powerful customization APIs that enables you to use it on any model setup with ease.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    fm-csv2json

    fm-csv2json

    A CSV Parser that converts CSV into JSON on the FileMaker Pro.

    A FileMaker script which when passed a valid CSV string, will covert this string into a JSON object.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    fm-xml2json

    fm-xml2json

    An XML Parser that converts XML into JSON on the FileMaker Pro.

    A FileMaker script which when passed a valid XML string, will covert this string into a JSON object.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    focuslab_control
    Software para controle de laboratório ótico, Client-Server com tecnologias Java para backend e Delphi para frontend.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    Apache module for servicing Android JSON RPC requests, if you want to develop pure java applications without the the bloat of J2EE take a closer look...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    sq data wrangler

    sq data wrangler

    sq data wrangler

    sq is a command line tool that provides jq-style access to structured data sources: SQL databases, or document formats like CSV or Excel. sq executes jq-like queries, or database-native SQL. It can join across sources: join a CSV file to a Postgres table, or MySQL with Excel. sq outputs to a multitude of formats including JSON, Excel, CSV, HTML, Markdown and XML, and can insert query results directly to a SQL database. sq can also inspect sources to view metadata about the source structure (tables, columns, size). You can use sq diff to compare tables, or entire databases. sq has commands for common database operations to copy, truncate, and drop tables.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • Next