
com.knifelish.tool.constant.Device Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fake-useragent Show documentation
Show all versions of fake-useragent Show documentation
Chrome/Firefox/Safari/Edge/UC/QQ/Baidu/Wechat/App user agent strings generator for Mac/Linux/Windows/Android
The newest version!
package com.knifelish.tool.constant;
import java.util.Arrays;
import java.util.List;
/**
* versions of Device/OS
*
* @author liao
* Create on 2023/1/23
*/
public interface Device {
/**
* macOS version history
*/
List MACOS = Arrays.asList(
"13.1", "12.6.2", "11.7.2", "10.15.7", "10.14.6", "10.13.6"
);
/**
* iOS version history
*/
List IOS = Arrays.asList(
"16.2", "15.7.2", "14.8.1", "13.7", "12.5.6", "11.4.1"
);
/**
* Android version history
*/
List ANDROID = Arrays.asList(
"14", "13", "12.1", "12", "11", "10", "9", "8.1", "8.0", "7.1.2", "7.1.1", "7.1.0", "7.0"
);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy