Popularity
2.0
Growing
Activity
0.0
Stable
76
5
5

Programming language: Swift
License: MIT License
Tags: Unofficial     SDK    
Latest version: v0.6.29

Mothership alternatives and similar libraries

Based on the "Unofficial" category.
Alternatively, view Mothership alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Mothership or a related project?

Add another 'Unofficial' Library

README

Mothership

iTunes Connect Library inspired by FastLane

version Swift Build Status Platforms Swift Package Manager compatible Carthage compatible License: MIT

I wrote MotherShip for two reasons.

  1. love FastLane, but I am not proficient in Ruby.
  2. I wanted to see how difficult it would be to write a port.

What can MotherShip do?

  1. Login to iTunesConnect
  2. Get list of Testers
  3. Get list of Groups
  4. Get list of Versions
  5. Get list of Builds
  6. Get App level Test Info
  7. Invite someone to test an app
  8. Update App level Test Information!
  9. Get Build Details
  10. Update Build Test Info

import MotherShip

let firstName = "C"
let lastName  = "B"
let email     = "[email protected]"

let tester = Tester(email: email, firstName: firstName, lastName: lastName)

let testFlight = TestFlight()

testFlight.login(with: creds)

let code = testFlight.invite(tester: tester, to: appInfo.appIdentifier, for: appInfo.teamIdentifier, groupName: appInfo.testGroup)

To Do

  • [ ] Documentation
  • [x] Ability to update app info
  • [ ] Upload build
  • [ ] Code signing? Or just leave it up to Apple
  • [ ] Two-Factor Authentication?

There is a Command Line Interface for MotherShip.

MotherShip-CLI

$ mothership login <user> <password>
$ mothership testflight invite <email> <first-name> <last-name> <app-id> <team-id>

NOTE

I've been working to get MotherShip to work on Linux, but there are open issues with URLSession using cookies that need to be resolved first PR1542


*Note that all licence references and agreements mentioned in the Mothership README section above are relevant to that project's source code only.