Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -221,16 +221,7 @@ function getImageDimensions pImageFile
end getImageDimensions

function validateIdentifier pIdentifier
local tValid

put true into tValid
set the itemDelimiter to "."
repeat for each item tItem in pIdentifier
if tItem is a number then
put false into tValid
end if
end repeat
return tValid
return matchText(pIdentifier, "(?i)^[a-z][a-z0-9_]*(\.[a-z][a-z0-9_]*)+$")
end validateIdentifier

on revUpdateStandaloneProgress pMessage
Expand Down
1 change: 1 addition & 0 deletions notes/bugfix-15157.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Ensure Android app identifier is valid