abandoned-strings alternatives and similar libraries
Based on the "Tools" category.
Alternatively, view abandoned-strings alternatives based on common mentions on social networks and blogs.
-
Awesome-Design-Tools
The best design tools and plugins for everything 👉 -
SwiftGen
The Swift code generator for your assets, storyboards, Localizable.strings, … — Get rid of all String-based APIs! -
R.swift
Strong typed, autocompleted resources like images, fonts and segues in Swift projects -
Insanity
Meta-programming for Swift, stop writing boilerplate code. -
Lona
A tool for defining design systems and using them to generate cross-platform UI code, Sketch files, and other artifacts. -
XcodeGen
A Swift command line tool for generating your Xcode project -
Tweaks
An easy way to fine-tune, and adjust parameters for iOS apps in development. -
appledoc
Objective-c code Apple style documentation set generator. -
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 -
FengNiao
A command line tool for cleaning unused resources in Xcode. -
LifetimeTracker
Find retain cycles / memory leaks sooner. -
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. -
ProvisionQL
Quick Look plugin for mobile apps and provisioning profiles -
SourceKitten
An adorable little framework and command line tool for interacting with SourceKit. -
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. -
Provisioning
A Quick Look plug-in for .mobileprovision files -
DBDebugToolkit
Set of easy to use debugging tools for iOS developers & QA engineers. -
Laurine
Laurine - Localization code generator written in Swift. Sweet! -
ThisCouldBeUsButYouPlaying
:black_joker: Generate Swift Playgrounds for any library. -
Attabench
Microbenchmarking app for Swift with nice log-log plots -
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. -
ViewMonitor
ViewMonitor can measure view positions with accuracy. -
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 -
Rugby
🏈 Cache CocoaPods for faster rebuild and indexing Xcode project -
WatchdogInspector
Shows your current framerate (fps) in the status bar of your iOS app -
SuperDelegate
SuperDelegate provides a clean application delegate interface and protects you from bugs in the application lifecycle -
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 -
Shark
Swift CLI for strong-typing images, colors, storyboards, fonts and localizations
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 abandoned-strings or a related project?
README
Abandoned Resource String Detection
This command line program detects unused resource strings in an iOS or OS X application.
Updated to Swift 3, thanks to @astaeck on Oct-17-2016
Usage
Open a Terminal to the directory which contains the AbandonedStrings executable, and run the following command:
$ ./AbandonedStrings /Users/your-username/path/to/source/code
What to expect
If a .strings
file contains…
"some_string_identifier" = "Some Display Text";
…this program will consider that resource string to be abandoned if…
"some_string_identifier"
…is not found in any of the source code files (namely, files with a .h
, .m
, .swift
or .jsbundle
extension).
More details
This program searches through the source code files in an iOS app project, looking for resource strings (in a .strings
file) whose identifiers are not referenced by the application's source code.
The search logic does not take into account if code is commented out, so it won't be as reliable if your application has a lot of commented-out code.
It also does not try to determine the context in which string identifiers are used, such as whether or not the string is being used to look up a localized string value or if it just happens to match a resource string identifier by coincidence.
Also, this program is ineffective if resource string identifiers are referenced via constants or dynamically constructed.
Disclaimer
As noted above, this program uses a simple heuristic and is not guaranteed to produce perfect results for every codebase.