{"id":14110848,"url":"https://github.com/rubygarage/shopapp-ios","last_synced_at":"2025-07-27T07:38:21.976Z","repository":{"id":43112789,"uuid":"105553986","full_name":"rubygarage/shopapp-ios","owner":"rubygarage","description":"ShopApp is an application that transfers an online store into a mobile app","archived":false,"fork":false,"pushed_at":"2019-06-06T12:18:41.000Z","size":6417,"stargazers_count":116,"open_issues_count":8,"forks_count":51,"subscribers_count":17,"default_branch":"master","last_synced_at":"2024-11-14T18:55:25.606Z","etag":null,"topics":["cocapods","ecommerce","ecommerce-shop","ecommerce-shopping-solution","ecommerce-store","ios","ios-app","ios-swift","mobile-app","mobile-development","swift"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rubygarage.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-10-02T15:54:24.000Z","updated_at":"2024-08-06T22:22:59.000Z","dependencies_parsed_at":"2022-08-30T00:12:05.272Z","dependency_job_id":null,"html_url":"https://github.com/rubygarage/shopapp-ios","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubygarage%2Fshopapp-ios","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubygarage%2Fshopapp-ios/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubygarage%2Fshopapp-ios/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubygarage%2Fshopapp-ios/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rubygarage","download_url":"https://codeload.github.com/rubygarage/shopapp-ios/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228369583,"owners_count":17909282,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cocapods","ecommerce","ecommerce-shop","ecommerce-shopping-solution","ecommerce-store","ios","ios-app","ios-swift","mobile-app","mobile-development","swift"],"created_at":"2024-08-14T10:03:01.420Z","updated_at":"2024-12-05T20:31:23.079Z","avatar_url":"https://github.com/rubygarage.png","language":"Swift","funding_links":[],"categories":["Swift"],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/rubygarage/shopapp-ios.svg?branch=master)](https://travis-ci.org/rubygarage/shopapp-ios)\n[![codecov](https://codecov.io/gh/rubygarage/shopapp-ios/branch/master/graph/badge.svg)](https://codecov.io/gh/rubygarage/shopapp-ios)\n\n# ShopApp for iOS\nShopApp connects with popular ecommerce platforms like Shopify, Magento, BigCommerce, and WooCommerce to transfer them into a mobile app for iOS and Android. \n\n\n![ ](https://github.com/rubygarage/shopapp-ios/blob/master/assets/shopapp-main-screen.gif?raw=true)\n***\nSo far, we’ve developed a [Shopify provider for iOS](https://github.com/rubygarage/shopapp-shopify-ios) and [Shopify provider for Android](https://github.com/rubygarage/shopapp-shopify-android).\nCurrently we’re working on adding more providers and extending the features list, so stay in touch with our updates. \n\n## Set up environment\nTo build and submit an application to the App Store, you're required to have XCode 9 installed. If it's not installed yet, follow the instructions from the official website https://developer.apple.com/xcode/ to install XCode 9.\n\nTo install the dependencies required for the application build, ShopApp uses CocoaPods.  Connect one of the providers for an online store and install all the dependencies. Here we'll use Shopify as an example.\n\n1. Add the following line to the Podfile:\n\n```\npod \"ShopApp_Shopify\", \"~\u003e 1.0\"\n```\n\n2. Install all the dependencies:\n\n```\npod install\n```\n\n3. You'll also have to configure the provider to get an access to your online store. To get an access, follow the instructions on a provider's [page](https://github.com/rubygarage/shopapp-shopify-ios).\n\nHere's how to configure the Shopify provider. Add the following code:\n\n```\ncontainer.register(API.self) { _ in\n    return ShopifyAPI(apiKey: \"API KEY\",\n        shopDomain: \"SHOP DOMAIN\",\n        adminApiKey: \"ADMIN API KEY\",\n        adminPassword: \"ADMIN PASSWORD\",\n        applePayMerchantId: \"APPLE PAY MERCHANT ID\")\n}\n.inObjectScope(.container)\n```\n\nto the file **ShopApp/Data/DI/DataAssembly.swift**. \n\n4. As the result, you'll be able to open the project file and launch an app.\n\nTo create a client for another SaaS, you'll have to add the following pod:\n```\npod 'ShopApp_Gateway', '~\u003e 1.0.5'\n```\nto the dependencies. \n\n5. Next, you have to create the class that'll work with the main application and implement the Repository protocol in it. \n\nAfter that, you can add a new client to the [main ShopApp application](https://github.com/rubygarage/shopapp-ios)\n\n## Requirements\n* iOS 10+\n* XCode 9 for app development and submission to Apple App Store\n* Cocoapods to install all the dependencies\n\n## License\nThe ShopApp for iOS is licensed under the [Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0)\n***\n\u003ca href=\"https://rubygarage.org/\"\u003e\u003cimg src=\"https://github.com/rubygarage/shopapp-shopify-ios/blob/master/assets/rubygarage.png?raw=true\" alt=\"RubyGarage Logo\" width=\"415\" height=\"128\"\u003e\u003c/a\u003e\n\nRubyGarage is a leading software development and consulting company in Eastern Europe. Our main expertise includes Ruby and Ruby on Rails, but we successfully employ other technologies to deliver the best results to our clients. [Check out our portfolio](https://rubygarage.org/portfolio) for even more exciting works!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubygarage%2Fshopapp-ios","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frubygarage%2Fshopapp-ios","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubygarage%2Fshopapp-ios/lists"}