mirror of
				https://github.com/f-droid/fdroidserver.git
				synced 2025-11-04 06:30:27 +03: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
 |