mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2025-05-25 23:27:46 +02:00

Android has stricter rules than Java for Package Names, but anything the Python regex thinks is valid must be valid according to Java's rules too. https://developer.android.com/studio/build/application-id
10 lines
196 B
Bash
Executable file
10 lines
196 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
set -x
|
|
|
|
export CLASSPATH=/usr/share/java/commons-lang3.jar:.
|
|
|
|
cd $(dirname $0)
|
|
javac -classpath $CLASSPATH RandomPackageNames.java
|
|
java -classpath $CLASSPATH RandomPackageNames
|