GithubHelp home page GithubHelp logo

appversioninxcode's Introduction

Xcode Application versioning for iOS swift projects

Output

alt text

Steps to configure

1. Add build script Run Script

alt text

2. Copy following code in your runscript
#/bin/sh

version=$(git rev-parse --verify HEAD | cut -c 1-7)

fileContent="// DO NOT EDIT,
// IT IS A MACHINE GENERATED FILE

//  AppInfo.swift
//
import Foundation
class AppInfo {
    let version: String
    let build: String
    let gitCommitSHA: String = \"$version\"
    init?() {
        guard let version = Bundle.main.infoDictionary?[\"CFBundleShortVersionString\"] as? String,
            let build = Bundle.main.infoDictionary?[\"CFBundleVersion\"] as? String else {
                return nil
            }
        self.version = version
        self.build = build
    }
}"
echo "$fileContent" > AppInfo.swift

alt text

3. Move/Drag the run script above the 'compile sources'

alt text

4. Now Build your project, It will create a file AppInfo.swift in project's root folder
5. Drag an drop AppInfo.swift file into your xcode project navigator.

alt text

Usage

guard let info = AppInfo() else {
    return
}
let infoText = "AppVersion: \(info.version) \nBuild: \(info.build) \nGit hash: \(info.gitCommitSHA)"
print(infoText)

alt text

appversioninxcode's People

Contributors

ankushkushwaha avatar

Stargazers

Abdul Rehman Malik avatar dennis du avatar

Watchers

James Cloos avatar  avatar

Forkers

arielelkin

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.