xavtool alternatives and similar libraries
Based on the "Tools" category.
Alternatively, view xavtool alternatives based on common mentions on social networks and blogs.
-
Awesome-Design-Tools
The best design tools and plugins for everything ๐ -
R.swift
Strong typed, autocompleted resources like images, fonts and segues in Swift projects -
SwiftGen
The Swift code generator for your assets, storyboards, Localizable.strings, โฆ โ Get rid of all String-based APIs! -
Lona
A tool for defining design systems and using them to generate cross-platform UI code, Sketch files, and other artifacts. -
Tweaks
An easy way to fine-tune, and adjust parameters for iOS apps in development. -
Xcodes.app
The easiest way to install and switch between multiple versions of Xcode - with a mouse click. -
FBSimulatorControl
idb is a flexible command line interface for automating iOS simulators and devices -
GDPerformanceView-Swift
Shows FPS, CPU and memory usage, device model, app and iOS versions above the status bar and report FPS, CPU and memory usage via delegate. -
SourceKitten
An adorable little framework and command line tool for interacting with SourceKit. -
ProvisionQL
Quick Look plugin for apps and provisioning profile files -
LicensePlist
A license list generator of all your dependencies for iOS applications -
AppDevKit
AppDevKit is an iOS development library that provides developers with useful features to fulfill their everyday iOS app development needs. -
ThisCouldBeUsButYouPlaying
:black_joker: Generate Swift Playgrounds for any library. -
DBDebugToolkit
Set of easy to use debugging tools for iOS developers & QA engineers. -
Laurine
Laurine - Localization code generator written in Swift. Sweet! -
iSimulator
iSimulator is a GUI utility to control the Simulator, and manage the app installed on the simulator. -
Blade
Better asset workflow for iOS developers. Generate Xcode image catalogs for iOS / OSX app icons, universal images, and more. -
Realm Browser
DEPRECATED - Realm Browser for Mac OS X has been replaced by realm-studio which is cross platform. -
Cookiecutter
A template for new Swift iOS / macOS / tvOS / watchOS Framework project ready with travis-ci, cocoapods, Carthage, SwiftPM and a Readme file -
SuperDelegate
SuperDelegate provides a clean application delegate interface and protects you from bugs in the application lifecycle -
WatchdogInspector
Shows your current framerate (fps) in the status bar of your iOS app -
abandoned-strings
Command line program that detects unused resource strings in an iOS or OS X application. -
Swift Package Index
The Swift Package Index is the place to find Swift packages! -
fastlane-plugin-appicon
Generate required icon sizes and iconset from a master application icon. -
AVXCAssets-Generator
AVXCAssets Generator takes path for your assets images and creates appiconset and imageset for you in just one click
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of xavtool or a related project?
README
Xplat Automating Version Tool
Command-line utility to automatically increase iOS / Android / UWP applications version written in Go. It follows Semantic Versioning.
Installation
Windows:
Using Chocolatey:
$ choco install xavtool -version 1.2.1
$ xavtool --version
Using scoop:
$ scoop bucket add gabrielrobert-bucket https://github.com/gabrielrobert/scoop-bucket
$ scoop install xavtool
macOS:
Using brew:
$ brew install gabrielrobert/tap/xavtool
$ xavtool --version
Binaries
Download executables on the release page.
From source:
$ go build
$ go test -v
$ go install
$ xavtool --version
Usage
$ xavtool
NAME:
xavtool - Command-line utility to automatically increase applications version
USAGE:
xavtool [global options] command [command options] [arguments...]
VERSION:
1.2.1
AUTHOR:
Gabriel Robert <[email protected]>
COMMANDS:
current, c List current versions
increment, i Increment to next version
set, s Set the current project version
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--help, -h show help
--version, -v print the version
increment
$ xavtool increment --help
NAME:
xavtool increment - Increment to next version
USAGE:
xavtool increment [command options] [arguments...]
OPTIONS:
--type value, -t value major, minor, patch (default: "minor")
set
$ xavtool set --help
NAME:
xavtool set - Set the current project version
USAGE:
xavtool set [arguments...]
Typical flow
$ xavtool current
1.0.1 - androidApp (...\test\AndroidManifest.xml)
1.0.1 - iOSApp (...\test\Info.plist)
1.0.1.0 - uwpApp (...\test\Package.appxmanifest)
$ git flow release start '1.1.0'
$ xavtool i
1.0.1: New version: 1.1.0 (...\test\AndroidManifest.xml)
1.0.1: New version: 1.1.0 (...\test\Info.plist)
1.0.1.0: New version: 1.1.0.0 (...\test\Package.appxmanifest)
$ git commit -am "Version bump to 1.1.0"
$ git flow release finish -p
It will update these files:
Info.plist
AndroidManifest.xml
Package.appxmanifest
Results
Info.plist (iOS)
Only these values will be edited:
1) CFBundleShortVersionString
(new version)
2) CFBundleVersion
(new version)
Before:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- ... -->
<key>CFBundleShortVersionString</key>
<string>1.0.1</string>
<key>CFBundleVersion</key>
<string>1.0.1</string>
<!-- ... -->
</dict>
</plist>
After:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- ... -->
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<key>CFBundleVersion</key>
<string>1.1.0</string>
<!-- ... -->
</dict>
</plist>
AndroidManifest.xml (Android)
Only these values will be edited:
1) manifest/@android:versionName
(new version)
2) manifest/@android:versionCode
(integer computed this way: (major * 1000000) + (minor * 10000) + (patch * 100)
)
Before:
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.xavtool"
android:versionCode="1000100"
android:versionName="1.0.1">
<!-- ... -->
</manifest>
After:
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.xavtool"
android:versionCode="1010000"
android:versionName="1.1.0">
<!-- ... -->
</manifest>
Package.appxmanifest (UWP)
Only these values will be edited:
1) Package/Identity/@Version
(new version with a revision number set to 0)
Before:
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<!-- ... -->
<Identity Name="95748d56-342b-4dae-93f5-aeda0587a1c0" Publisher="CN=gabrielrobert" Version="1.0.1.0"/>
<!-- ... -->
</Package>
After:
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<!-- ... -->
<Identity Name="95748d56-342b-4dae-93f5-aeda0587a1c0" Publisher="CN=gabrielrobert" Version="1.1.0.0"/>
<!-- ... -->
</Package>
config.xml (Cordova)
Only these values will be edited:
1) widget/@version
(new version)
2) widget/@ios-CFBundleVersion
(new version)
3) widget/@android-versionCode
(integer computed this way: (major * 1000000) + (minor * 10000) + (patch * 100)
)
Before:
<?xml version="1.0" encoding="utf-8"?>
<widget
id="com.example.xavtool"
android-versionCode="1000100"
ios-CFBundleVersion="1.0.1"
version="1.0.1"
xmlns="http://www.w3.org/ns/widgets"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:cdv="http://cordova.apache.org/ns/1.0">
<!-- ... -->
</widget>
After:
<?xml version="1.0" encoding="utf-8"?>
<widget
id="com.example.xavtool"
android-versionCode="1010000"
ios-CFBundleVersion="1.1.0"
version="1.1.0"
xmlns="http://www.w3.org/ns/widgets"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:cdv="http://cordova.apache.org/ns/1.0">
<!-- ... -->
</widget>
Support
Please open an issue for support.
Contributing
Please contribute using Github Flow. Create a branch, add commits, and open a pull request.