Skip to content

Package information Pattern variables

Guo KK edited this page Jul 19, 2019 · 9 revisions

Following is the list of supporting variables, you could use for Infotip and renaming:

Variable Description APK IPA APPX/APPXBUNDLE
%AppName% App Name, normally it's the name shows in the store application.label CFBundleDisplayName Properties.DisplayName
%Version% Main Version number manifest.VersionName CFBundleShortVersionString Identity.Version
%Revision% Another Version Number, normally it's the revision manifest.VersionCode CFBundleVersion --
%Package% Package full name manifest.package CFBundleIdentifier Identity.Name
%Publisher% Author apk doesn't have this info, use package name except the part after last . iTunesMetadata.flagCopyright Identity.Publisher
%OS% Android / iOS / Windows "Android" "iOS" "Windows"
%FileSize% File size, count by Mega bytes
%LastModify% Last modify date
%Debuggable% App is debug version or not (Application.Debuggable == "true")?"Debug" : "Release"
%Attr(TagPath,Attribute)% Attribute in androidmanifest.xml

Example:

Info Tip Pattern:

This is %AppName%
Package name is %Package%
and the Version is : %Version%, Revsion is %Revision%
minSdkVersion: %Attr(manifest/uses-sdk,minSdkVersion)%

Rename Pattern:

%Publisher%_%AppName%_%Version%_%Revision%