Skip to content
This repository was archived by the owner on Jan 14, 2022. It is now read-only.

Commit bb78bac

Browse files
committed
Fallback to name starting with lower case letter.
The change is done because Android rejects package names starting with upper case letters. Fixes #6.
1 parent fac54be commit bb78bac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function sanitizeName (name) {
6767
while (currentLength > sanitizedName.length);
6868

6969
if (sanitizedName.length === 0) {
70-
sanitizedName = 'MyManifoldJSApp';
70+
sanitizedName = 'myManifoldJSApp';
7171
}
7272

7373
return sanitizedName;

0 commit comments

Comments
 (0)