All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gu.sql2java.utils.Platform Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
package gu.sql2java.utils;

/**
 * @author guyadong
 * @since 3.24.0
 */
public class Platform {

    public static boolean isAndroid() {
        String vmName = System.getProperty("java.vm.name");
		if (vmName == null) { // default is false
			return false;
		}
        String lowerVMName = vmName.toLowerCase();
        
        return lowerVMName.contains("dalvik") //
               || lowerVMName.contains("lemur") // aliyun-vm name
        ;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy