學習筆記之sdk版本號判斷

2021-10-03 14:13:12 字數 1066 閱讀 1554

build.version.sdk_int獲取當前手機sdk的版本號。

build.version.sdk_int >= build.version_codes.kitkat這句是獲取當前手機sdk版本號大於或等於build.version_codes.kitkat(安卓4.)

第一版: build.version_codes.base

1.1版: build.version_codes.base_1_1

1.5版: build.version_codes.cupcake

此版官方未發布: build.version_codes.cur_development

1.6版: build.version_codes.donut

2.0版: build.version_codes.eclair

2.0.1版: build.version_codes.eclair_0_1

2.1版: build.version_codes.eclair_mr1

2.2版: build.version_codes.froyo

2.3版: build.version_codes.gingerbread

2.3.3版: build.version_codes.gingerbread_mr1

3.0版: build.version_codes.honeycomb

3.1版: build.version_codes.honeycomb_mr1

3.2版: build.version_codes.honeycomb_mr2

4.0版: build.version_codes.ice_cream_sandwich

4.0.3版: build.version_codes.ice_cream_sandwich_mr1

4.1版: build.version_codes.jelly_bean

4.2版: build.version_codes.jelly_bean_mr1

4.3版:build.version_codes.jelly_bean_mr2+newline);

4.4版:build.version_codes.kitkat);

獲取版本號 nginx小技巧之隱藏版本號

比如,163映象站,我們隨意訪問乙個不存在的資源,然後看nginx返回的資訊,可以看到只返回了nginx,並沒有看到其版本號。在nginx的配置檔案新增乙個指令 server tokens off 這個指令可以新增在http,server,location中。一般直接新增在http指令塊中。ps 這...

Android版本更新 版本號判斷

先貼乙個後台返回的一般版本更新介面格式 假設目前已判斷到後台code 本地 如下 首先拿到本地的 的 物件 public static file querydownloadedapk context context cur.close return targetapkfile 拿到 file tar...

Python判斷軟體版本號的大小

思路 1 先將不同長度的版本號通過補0變成相同的長度,方便比較 否則無法區別3.9.1和3.9 2 對每個.分割的部分轉為整數進行比較大小,任意部分有大小區別則不再比較 3 如果比較到最後一部分都相等,那說明是同個版本,如 3.9和3.9.0 4 為了返回版本原值,所以另外加了個變數儲存補0後的版本...