{"id":16558179,"url":"https://github.com/jaredsburrows/gradle-ios-plugin","last_synced_at":"2026-04-23T03:31:43.228Z","repository":{"id":22451328,"uuid":"25789758","full_name":"jaredsburrows/gradle-ios-plugin","owner":"jaredsburrows","description":"Gradle plugin for iOS mobile development","archived":false,"fork":false,"pushed_at":"2014-11-19T00:07:14.000Z","size":306,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-05T00:47:12.248Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Groovy","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/jaredsburrows.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-10-26T20:31:34.000Z","updated_at":"2017-11-06T06:38:08.000Z","dependencies_parsed_at":"2022-08-20T17:00:41.205Z","dependency_job_id":null,"html_url":"https://github.com/jaredsburrows/gradle-ios-plugin","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jaredsburrows/gradle-ios-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredsburrows%2Fgradle-ios-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredsburrows%2Fgradle-ios-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredsburrows%2Fgradle-ios-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredsburrows%2Fgradle-ios-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jaredsburrows","download_url":"https://codeload.github.com/jaredsburrows/gradle-ios-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaredsburrows%2Fgradle-ios-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32164876,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-23T02:19:40.750Z","status":"ssl_error","status_checked_at":"2026-04-23T02:17:55.737Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-10-11T20:09:49.303Z","updated_at":"2026-04-23T03:31:43.210Z","avatar_url":"https://github.com/jaredsburrows.png","language":"Groovy","funding_links":[],"categories":[],"sub_categories":[],"readme":"Gradle iOS Plugin -- BETA\n=================\n\nGradle plugin for iOS mobile development\n\nThere is an Android Plugin for Gradle, why isn't there one for iOS?\n\nPlease see the Example - [iOS Gradle Example](https://github.com/jaredsburrows/gradle-ios-plugin-example)\n\n## Requirements\n\n- XCode (iOS SDK)\n- CocoaPods (Dependencies)\n- iOS-Deploy (Deploying to Devices)\n\n#### Install XCode\n\nhttps://developer.apple.com/xcode/\n\n#### Install [CocoaPods](http://cocoapods.org/)\n\n    sudo gem install cocoapods\n\n#### Install [iOS-Deploy](https://github.com/phonegap/ios-deploy)(devices), [iOS-Sim](https://github.com/phonegap/ios-sim)(emulator) and/or the original [Fruitstrap](https://github.com/ghughes/fruitstrap)(devices \u003c= iOS 6.1)\n\n**iOS-Deploy:**\n\n    brew install ios-deploy\n\n**iOS-Sim:**\n\n    brew install ios-sim\n\n**Fruitstrap:**\n\n    git clone \"https://github.com/ghughes/fruitstrap.git\"\n    cd fruistrap\n    make install\n\n## Plugin Setup:\n\nAdd the plugin to your `buildscript`'s `dependencies` section:\n\n    buildscript {\n    \tdependencies {\n    \t\tclasspath 'com.github.jaredsburrows.tools.build.ios:gradle:0.0.1'\n    \t}\n    \t...\n    }\n\nApply the `com.ios.application` plugin:\n\n    apply plugin: 'com.ios.application'\n\n## Example \"build.gradle\":\n\n    buildscript {\n    \trepositories {\n    \t\tjcenter()\n    \t}\n\n    \tdependencies {\n    \t\tclasspath 'com.github.jaredsburrows.tools.build.ios:gradle:0.0.1'\n    \t}\n    }\n\n    apply plugin: 'com.ios.application'\n\n    ios {\n        compileSdkVersion '8.1'     // iOS SDK version\n        buildToolsVersion '6.1'     // XCode version\n\n        defaultConfig {\n            minSdkVersion 8         // Minimum iOS SDK version\n            targetSdkVersion 19     // Target iOS SDK version\n            versionCode 1           // *optional*\n            versionName '1.0'       // *optional*\n        }\n\n        // Cocoa Pods\n        pods {\n            pod 'Google-Mobile-Ads-SDK'\n            pod 'GoogleAnalytics-iOS-SDK'\n        }\n    }\n\n    dependencies {\n        ...\n    }\n\nPlease see the Example - [iOS Gradle Exmaple](https://github.com/jaredsburrows/gradle-ios-plugin-example)\n\n#### License\n\n    Copyright (C) 2014 Gradle-iOS-Plugin by Jared Burrows\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaredsburrows%2Fgradle-ios-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaredsburrows%2Fgradle-ios-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaredsburrows%2Fgradle-ios-plugin/lists"}