mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
9d12b1dc61
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
11 lines
196 B
Bash
Executable File
11 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
|