支援 64 位元架構

在 Google Play 上發布的應用程式必須支援 64 位元架構。為應用程式新增 64 位元版本,不僅能提升效能,也能延伸支援只適用 64 位元硬體的裝置。

請按照下列步驟操作,確保 32 位元應用程式支援 64 位元的裝置。

評估應用程式

如果應用程式只使用以 Java 程式設計語言或 Kotlin 編寫的程式碼 (包括所有程式庫或 SDK),則應用程式可支援 64 位元裝置。如果您的應用程式使用任何原生程式碼,或是您不確定這一點,請評估應用程式。

快速檢查狀態

前往 Play 管理中心查看現有版本,確認其是否符合規範。

如果草稿版本存在與 64 位元版本相關的問題,Play 管理中心也會顯示警告,參見下圖範例。

如果系統顯示快訊,請按照下列步驟,讓應用程式與 64 位元裝置相容。

應用程式是否使用原生程式碼?

如果符合下列條件,即表示應用程式使用原生程式碼:

  • 應用程式存在 C/C++ (原生) 程式碼。
  • 與第三方原生資料庫連結。
  • 建構工具為使用原生資料庫的第三方應用程式。

應用程式是否有 64 位元程式庫?

檢查 APK 檔案的結構。建構完成後,APK 會連同應用程式所需的所有原生資料庫一併封裝。原生資料庫則會根據 ABI 儲存在多個資料夾中。系統不必支援每一種 64 位元架構,但所有支援的原生 32 位元架構,其對應的 64 位元架構也必須支援。

如果是 ARM 架構,32 位元程式庫位於 armeabi-v7a相應的 64 位元程式庫則位於 arm64-v8a

如果是 x86 架構,請為 32 位元尋找 x86,64 位元則尋找 x86_64

確認這兩個資料夾中都有原生資料庫。一起來複習:

平台 32 位元程式庫資料夾 64 位元程式庫資料夾
ARM lib/armeabi-v7a lib/arm64-v8a
x86 lib/x86 lib/x86_64

請注意,每個資料夾中的程式庫組合可能完全相同,也可能不完全相同,取決於您應用程式的實際情況。目標是確保應用程式在僅限 64 位元的環境中能正確執行。

在一般情況下,同時針對 32 位元和 64 位元架構建構的 APK 或軟體包會有這兩種 ABI 的資料夾,而每個資料夾都有一組對應的原生資料庫。如果系統不支援 64 位元版本,您可能會看到 32 位元的 ABI 資料夾,而非 64 位元資料夾。

使用 APK 分析工具尋找原生資料庫

APK 分析工具可用來多方評估已建構的 APK。您可使用此工具尋找任何原生資料庫,確認含有 64 位元程式庫。

  1. 開啟 Android Studio,然後開啟任何專案
  2. 從選單中依序選取「Build」>「Analyze APK」

    啟動 APK 分析工具

  3. 選擇要評估的 APK。

  4. 查看「lib」資料夾,查看有否代管的「.so」檔案。如果沒有,表示應用程式支援 64 位元裝置,您不必採取其他行動。如果看到 armeabi-v7ax86,就表示有 32 位元程式庫。

  5. 查看「arm64-v8a」或「x86_64」資料夾中是否有類似的「.so」檔案。

    啟動 APK 分析工具

  6. 如果您沒有任何 arm64-v8ax86_64 程式庫,請更新建構程序,開始在 APK 中建構並封裝這些構件。

  7. 如果兩個程式庫都已封裝完畢,就可以略過這個步驟,並直接在 64 位元硬體上測試應用程式

透過解壓縮 APK 尋找原生資料庫

APK 檔案結構與 ZIP 檔案類似。使用指令列或其他擷取工具,將 APK 檔案解壓縮。視解壓縮工具而定。您可能需要將檔案重新命名為 .zip。

按照上述指南瀏覽解壓縮的檔案,確認應用程式是否支援 64 位元裝置。您可以在指令列中執行下列指令範例:

:: Command Line
> zipinfo -1 YOUR_APK_FILE.apk | grep \.so$
lib/armeabi-v7a/libmain.so
lib/armeabi-v7a/libmono.so
lib/armeabi-v7a/libunity.so
lib/arm64-v8a/libmain.so
lib/arm64-v8a/libmono.so
lib/arm64-v8a/libunity.so

在這個範例中,您可以找到 armeabi-v7aarm64-v8a 程式庫,這表示應用程式支援 64 位元架構。

用 64 位元程式庫建構應用程式

下列操作說明概述如何建構 64 位元程式庫。請注意,以下步驟僅涵蓋您可以透過原始碼執行的建構程式碼和程式庫。

透過 Android Studio 或 Gradle 進行建構

大部分的 Android Studio 專案都使用 Gradle 做為基礎建構系統,因此本節適用於使用這兩種工具進行建構的情況。如要啟用原生程式碼的建構作業,請在應用程式「build.gradle」檔案的 ndk.abiFilters 設定中,新增 arm64-v8a 和/或 x86_64 (視您要支援的架構而定):

Groovy

// Your app's build.gradle
plugins {
  id 'com.android.app'
}

android {
   compileSdkVersion 27
   defaultConfig {
       appId "com.google.example.64bit"
       minSdkVersion 15
       targetSdkVersion 28
       versionCode 1
       versionName "1.0"
       ndk.abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'
// ...

Kotlin

// Your app's build.gradle
plugins {
    id("com.android.app")
}

android {
    compileSdkVersion(27)
    defaultConfig {
        appId = "com.google.example.64bit"
        minSdkVersion(15)
        targetSdkVersion(28)
        versionCode = 1
        versionName = "1.0"
        ndk {
            abiFilters += listOf("armeabi-v7a","arm64-v8a","x86","x86_64")
        }
// ...

使用 CMake 進行建構

如果應用程式是以 CMake 建構,可將 arm64-v8a 傳遞到「-DANDROID_ABI」參數,以便針對 64 位元 ABI 進行建構:

:: Command Line
> cmake -DANDROID_ABI=arm64-v8a … or
> cmake -DANDROID_ABI=x86_64 …

使用 ndk-build 進行建構

如果應用程式是以 ndk-build 建構,可使用 APP_ABI 變數修改「Application.mk」檔案,以便針對 64 位元 ABI 進行建構:

APP_ABI := armeabi-v7a arm64-v8a x86 x86_64

將 32 位元程式碼移植至 64 位元

如果程式碼已經可以在電腦或 iOS 上執行,則不須為 Android 額外進行任何設定。如果這是第一次建構 64 位元系統的程式碼,那麼您需要解決的主要問題是,指標已不適合用於 int 等 32 位元整數類型。

請更新會以 intunsigneduint32_t 等類型儲存指標的程式碼。在 Unix 系統上,long 與指標大小相符,然而在 Windows 上並不是如此。請改用揭露意圖的 uintptr_tintptr_t 類型。如要儲存兩個指標間的差異,請使用 ptrdiff_t 類型。

請一律優先採用 <stdint.h> 中定義的特定固定寬度整數類型,而非 intlong 等非固定寬度類型,即便是對於非指標類型也是如此。

請使用以下編譯器旗標,找出程式碼在指標和整數之間轉換錯誤的情況:

-Werror=pointer-to-int-cast
-Werror=int-to-pointer-cast
-Werror=shorten-64-to-32

含有 int 欄位 (其中有 C/C++ 物件指標) 的 Java 類別有同樣的問題。在 JNI 原始碼中搜尋 jint,並確定已切換至 long (Java 端) 和 jlong (C++ 端)。

對於 64 位元程式碼,隱式函式宣告更加危險。C/C++ 假設隱式宣告的函式傳回類型 (也就是編譯器未偵測到宣告的函式) 為 int。如果函式的實際傳回類型是指標,這對於在 32 位元系統上運作並沒有問題,在這類系統上,您的指標可在 int 使用。然而,對 64 位元系統來說,這個編譯器在指標執行到一半時就無法正常運作。例如:

// This function returns a pointer:
// extern char* foo();

// If you don't include a header that declares it,
// when the compiler sees this:
char* result = foo();

// Instead of compiling that to:
result = foo();

// It compiles to something equivalent to:
result = foo() & 0xffffffff;

// Which will then cause a SIGSEGV if you try to dereference `result`.

以下編譯器旗標會將隱式函式宣告的警告轉變為錯誤,讓您可以更容易找到和修正這個問題:

-Werror=implicit-function-declaration

如果您有內嵌組合器,請重新編寫或使用一般的 C/C++ 實作。

如果擁有硬式編碼的類型大小 (例如 8 或 16 個位元組),請將其替換為對等的 sizeof(T) 運算式 (例如 sizeof(void*))。

如需有條件地為 32 位元編譯不同於 64 位元的程式碼,可以使用 #if defined(__LP64__) 來處理一般 32/64 間的差異;針對 Android 支援的特定架構,則可以使用 __arm____aarch64__ (arm64)、__i386__ (x86) 和 __x86_64__

由於傳統格式指定碼不允許使用對 32 位元和 64 位元裝置都正確的方式來指定 64 位元類型,因此必須為 printfscanf 這類函式調整格式字串。使用 <inttypes.h> 中的 PRISCN 巨集就能解決這個問題,PRIxPTRSCNxPTR 用於寫入/讀取十六進位指標,而 PRId64SCNd64 則可透過移植的方式寫入/讀取 64 位元值。

轉移時,您可能需要使用 1ULL 取得要轉移的 64 位元常數,不能使用僅支援 32 位元的 1

透過 Android App Bundle 減少大小擴增量

如果為應用程式新增 64 位元架構支援,可能會擴增 APK 大小。強烈建議您善用 Android App Bundle 功能,這樣當您在同一個 APK 中納入 32 位元與 64 位元的原生程式碼時,才能將對大小造成的影響減至最低。

遊戲開發人員

目前最常用的三種引擎均支援 64 位元版本:

  • Unreal (自 2015 年開始支援)
  • Cocos2d (自 2015 年開始支援)
  • Unity (自 2018 年開始支援)

Unity 開發人員

升級至支援的版本

Unity 提供 2018.22017.4.16 版本,均支援 64 位元。

如果您使用的 Unity 版本不支援 64 位元,請決定要升級的版本,並按照 Unity 提供的指引來遷移環境,確保應用程式升級至可建構 64 位元程式庫的版本。Unity 建議升級至最新 LTS 版本的編輯器,以便取得最新功能和更新。

以下圖表概述各種 Unity 版本和建議做法:

Unity 版本 版本是否支援 64 位元? 建議做法

2020.x

✔️

確保建構設定能夠輸出 64 位元程式庫。

2019.x

✔️

確保建構設定能夠輸出 64 位元程式庫。

2018.4 (LTS)

✔️

確保建構設定能夠輸出 64 位元程式庫。

2018.3

✔️

確保建構設定能夠輸出 64 位元程式庫。

2018.2

✔️

確保建構設定能夠輸出 64 位元程式庫。

2018.1

提供 64 位元實驗性支援。

2017.4 (LTS)

✔️

2017.4.16 起開始支援。確保建構設定能夠輸出 64 位元程式庫。

2017.3

✖️

升級至支援 64 位元的版本。

2017.2

✖️

升級至支援 64 位元的版本。

2017.1

✖️

升級至支援 64 位元的版本。

<=5.6

✖️

升級至支援 64 位元的版本。

變更建構設定以便輸出 64 位元程式庫

如果您使用支援 64 位元 Android 程式庫的 Unity 版本,可以調整版本設定來產生 64 位元的應用程式版本。請使用 IL2CPP 後端做為指令碼後端。如要設定 Unity 專案來建構 64 位元架構,請進行下列操作:

  1. 前往「Build Settings」,確認「Platform」下方的「Android」旁是否顯示 Unity 符號,確保您是針對 Android 進行建構。1. 如果 Android 平台旁未顯示 Unity 符號,請選取「Android」,然後按一下「Switch Platform」
  2. 按一下「Player Settings」

    Unity 中的「Player settings」

  3. 依序前往「Player Settings Panel」>「Settings for Android」>「Other settings」>「Configuration」

  4. 將「Scripting Backend」設為「IL2CPP」

  5. 勾選「Target Architectures」下方的「ARM64」核取方塊。

    在 Unity 中設定目標架構

  6. 照常建構!

請注意,如要針對 ARM64 進行建構,必須為該平台量身打造所有資產。請按照 Unity 的指南來減少 APK 大小,並考慮善用 Android App Bundle 功能來減少大小增加量。

遵循多重 APK 和 64 位元版本規定

如果您使用 Google Play 的多重 APK 支援功能發布應用程式,請注意要從版本層面來評估是否符合 64 位元版本規定。不過,64 位元版本規定不適用於發行範圍不含 Android 9 Pie 以上版本裝置的 APK 和應用程式套件。

如果其中一個 APK 標示為不符合版本要求,但版本過舊而無法修正為符合要求,其中一種策略是在 APK 資訊清單的 uses-sdk 元素中新增 maxSdkVersion="27" 屬性。這樣一來,系統就不會向搭載 Android 9 Pie 以上版本的裝置提供該 APK,因此不會再違反規定。

遵循 RenderScript 和 64 位元版本規定

如果應用程式使用 RenderScript,並且以舊版 Android 工具建構,則該應用程式可能會遇到 64 位元版本遵循問題。如果使用版本低於 21.0.0 的建構工具,編譯器可能會將產生的中間碼放到外部 .bc 檔案中。64 位元架構不再支援這些舊版 .bc 檔案,因此當 APK 出現這些檔案時,就會造成版本遵循問題。

如要修正問題,請移除專案中的所有 .bc 檔案,將環境升級至 build-tools-21.0.0 以上版本,然後將 Android Studio 中的 renderscriptTargetApi 設為 21+,藉此指示編譯器不要產生 .bc 檔案。接著請重新建構應用程式並檢查是否有 .bc 檔案,然後將檔案上傳至 Play 管理中心。

在 64 位元硬體上測試應用程式

應用程式的 64 位元版本應與 32 位元版本擁有相同的品質,並提供同樣的特徵集。請測試應用程式,確保在最新版 64 位元裝置上提供良好的使用體驗。

僅限 64 位元裝置

建議您盡可能使用下列任一選項,在僅限 64 位元的嚴格環境中測試應用程式:

搭載 64 位元專屬系統映像檔的 Google Pixel

為協助開發及測試應用程式,我們為部分 Pixel 裝置提供僅限 64 位元嚴格環境的特殊系統映像檔。這些僅限 64 位元的映像檔起初已與 Android 13 和 14 預覽版本的標準工廠系統映像檔同時提供,但您可以繼續使用這些映像檔來測試應用程式的 64 位元相容性。

取得 64 位元專屬映像檔

與工廠系統映像檔類似,您可以使用 Android Flash Tool 將 64 位元專屬映像檔刷新到裝置上,也可以手動刷新裝置,詳情請參閱後續章節。

使用 Android Flash Tool 刷新裝置

透過 Android Flash Tool,您可以將系統映像檔安全刷新至支援的 Pixel 裝置。Android Flash Tool 可搭配任何支援 WebUSB 的網路瀏覽器使用,例如:Chrome 或 Edge 79 以上版本。

Android Flash Tool 會逐步引導刷新裝置過程,期間您無需安裝任何工具,但是必須解鎖裝置,並在開發人員選項中啟用 USB 偵錯功能。如需完整操作說明,請參閱 Android Flash Tool 說明文件

請透過 USB 連接裝置,然後根據要刷新的系統映像檔類型,使用下列其中一個連結前往 Android Flash Tool,並按照螢幕上的指示操作:

手動刷新裝置

您也可以下載最新的系統映像檔,然後手動將該映像檔刷新至裝置。請參閱下表,下載測試裝置適用的系統映像檔:如果您需要整個測試環境的精確控制項,或需要頻繁重新安裝 (例如執行自動化測試) 時,不妨手動刷新裝置。

備份好裝置資料,並下載相符的系統映像檔後,即可將映像檔刷新到裝置上

您隨時都可以返回使用最新的公開版本

適用於 Android 14 的 64 位元專屬原廠映像檔 (Beta 版 5.3)

這些映像檔針對測試 64 位元應用程式相容性提供嚴謹的 64 位元專用環境。這些 64 位元專屬設定僅限開發人員使用。

裝置 下載連結 SHA-256 總和檢查碼
Pixel 4a (5G) 7e6731fab811ae389f5ff882d5c5a2b8b942b8363b22bbcc038b39d7c539e60a
Pixel 5 c4da6a19086a02f2cd2fa7a4054e870916954b8e5a61e9a07ee942c537e4b45a
Pixel 6 98943384284cbc7323b8867d84c36151757f67ae7633012fb69cb5d6bec2b554
Pixel 6 Pro 67ec40be5bd05a40fa5dabc1ce6795aae75d1904193d52e2da00425ed7cb895b
適用於 Android 13 的 64 位元專屬原廠映像檔 (QPR3 Beta 版 3.2)

這些映像檔針對測試 64 位元應用程式相容性提供嚴謹的 64 位元專用環境。這些 64 位元專屬設定僅限開發人員使用。

裝置 下載連結 SHA-256 總和檢查碼
Pixel 4a (5G) b4be40924f62c3c2b3ed20a9f7fa4303aa9c39649d778eb96f86c867fe3ae59a
Pixel 5 6e5e027a4f64f9f786db9bb69d50d1a551c3f6aad893ae450e1f8279ea1b761a
Pixel 6 becb9b81a5bddad67a4ac32d30a50dcb372b9d083cb7c046e5180510e479a0b8
Pixel 6 Pro b0ef544ed2312ac44dc827f24999281b147c11d76356c2d06b2c57a191c60480
返回公開版本

您可以使用 Android Flash Tool 來刷新原廠映像檔,也可以從Nexus 和 Pixel 裝置的原廠映像檔頁面取得原廠規格的系統映像檔,接著以手動方式將該映像檔刷新到裝置上。

Android Emulator

自 Android 12 (API 級別 31) 起,Android Emulator 系統映像檔僅提供 64 位元版本。請使用 Android 12 (API 級別 31) 以上版本的系統映像檔建立 Android 虛擬裝置 (AVD),在嚴格的僅限 64 位元環境中測試應用程式。

其他裝置選項

如果您沒有上述任一裝置,或無法使用 Android Emulator,下一個最佳做法是使用支援 64 位元的裝置,例如 Google Pixel 或其他裝置製造商在近期推出的旗艦款裝置。

安裝及測試應用程式

測試 APK 最簡單的方法是使用 Android Debug Bridge (ADB) 安裝應用程式。在多數情況下,您可以提供 --abi 做為參數,指出要將哪些程式庫安裝到裝置上。這樣只會在包含 64 位元程式庫的裝置上安裝應用程式。

:: Command Line
# A successful install:
> adb install --abi armeabi-v7a YOUR_APK_FILE.apk
Success

# If your APK does not have the 64-bit libraries:
> adb install --abi arm64-v8a YOUR_APK_FILE.apk
adb: failed to install YOUR_APK_FILE.apk: Failure [INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113]

# If your device does not support 64-bit, an emulator, for example:
> adb install --abi arm64-v8a YOUR_APK_FILE.apk
ABI arm64-v8a not supported on this device

安裝成功後,請和平常一樣測試應用程式,確保品質和 32 位元版本沒有差別。

檢查是否有已知的相容性問題

測試時,請檢查應用程式是否存在下列問題,導致無法在 64 位元裝置上順利運作。即使您的應用程式未直接依附受影響的程式庫,也不代表依附元件中的第三方程式庫和 SDK 不會依附這類程式庫。

SoLoader

如果您使用原生程式碼載入器 SDK SoLoader,請更新至 0.10.4 以上版本。假如您的應用程式使用了依附於 SoLoader 的 SDK,請務必一併將受影響的 SDK 更新至最新穩定版。

SoLoader 0.9.0 以下版本會假設系統程式庫位於 /vendor/lib:/system/lib。這項錯誤不會影響已有此路徑的裝置 (例如 Pixel 7),但如果 /vendor/lib64:/system/lib64 是裝置上存放系統程式庫的唯一路徑,這項假設就會造成裝置異常終止。

如要進一步瞭解如何修正此問題和 SoLoader 造成的其他問題,請參閱 Google 說明中心的相應解答

OpenSSL

如果您使用 OpenSSL 程式庫,請更新至 OpenSSL 1.1.1i 以上版本。假如您的應用程式使用了透過 HTTPS 建立連線的 SDK,或其他依附於 OpenSSL 的 SDK,請務必一併更新至使用新版 OpenSSL 的 SDK 最新版本。萬一找不到符合規定的 SDK 版本,請洽詢 SDK 供應商。

ARMv8.3 PAC 功能會在執行階段驗證指標,因此能在硬體輔助下實現控制流程完整性。舊版 OpenSSL 無法正確使用這些功能,會導致所有搭載 ARMv8.3a 以上版本處理器的裝置發生執行階段異常終止。

如要進一步瞭解如何修正此問題和 OpenSSL 造成的其他問題,請參閱 Google 說明中心的相應解答

BTI

ARMv8.5 以上版本會使用分支目標指令 (BTI) 來協助防範 JOP 攻擊。舊版模糊處理 SDK 會分支成帶有隨機偏移值且使用 BTI 建構的程式庫,這可能導致應用程式異常終止。這些指令已編碼為 HINT,因此在不支援 BTI 的裝置上不會發生這個錯誤。

發布

當您準備好發布應用程式時,請照常發布。一如往常,請繼續按照最佳做法部署應用程式。建議您利用封閉測試群組,僅向少數使用者推出應用程式,確保應用程式的品質一致。

在推出重大更新時,請務必先在支援 64 位元架構的裝置上進行全面測試,再將應用程式發布給更多目標對象。

下載 Android 14 factory system image (64-bit-only)

下載前,請先同意以下條款及細則。

條款及細則

By clicking to accept, you hereby agree to the following: All use of this development version SDK will be governed by the Android Software Development Kit License Agreement (available at https://developer.android.com/studio/terms and such URL may be updated or changed by Google from time to time), which will terminate when Google issues a final release version. Your testing and feedback are important part of the development process and by using the SDK, you acknowledge that (i) implementation of some features are still under development, (ii) you should not rely on the SDK having the full functionality of a stable release; (iii) you agree not to publicly distribute or ship any application using this SDK as this SDK will no longer be supported after the official Android SDK is released; and (iv) you agree that Google may deliver elements of the SDK to your devices via auto-update (OTA or otherwise, in each case as determined by Google). WITHOUT LIMITING SECTION 10 OF THE ANDROID SOFTWARE DEVELOPMENT KIT LICENSE AGREEMENT, YOU UNDERSTAND THAT A DEVELOPMENT VERSION OF A SDK IS NOT A STABLE RELEASE AND MAY CONTAIN ERRORS, DEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE, INCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR OTHER DEVICE.
下載 Android 14 factory system image (64-bit-only)

bramble_beta_64-upb5.230623.006-factory-7e6731fa.zip

下載 Android 14 factory system image (64-bit-only)

下載前,請先同意以下條款及細則。

條款及細則

By clicking to accept, you hereby agree to the following: All use of this development version SDK will be governed by the Android Software Development Kit License Agreement (available at https://developer.android.com/studio/terms and such URL may be updated or changed by Google from time to time), which will terminate when Google issues a final release version. Your testing and feedback are important part of the development process and by using the SDK, you acknowledge that (i) implementation of some features are still under development, (ii) you should not rely on the SDK having the full functionality of a stable release; (iii) you agree not to publicly distribute or ship any application using this SDK as this SDK will no longer be supported after the official Android SDK is released; and (iv) you agree that Google may deliver elements of the SDK to your devices via auto-update (OTA or otherwise, in each case as determined by Google). WITHOUT LIMITING SECTION 10 OF THE ANDROID SOFTWARE DEVELOPMENT KIT LICENSE AGREEMENT, YOU UNDERSTAND THAT A DEVELOPMENT VERSION OF A SDK IS NOT A STABLE RELEASE AND MAY CONTAIN ERRORS, DEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE, INCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR OTHER DEVICE.
下載 Android 14 factory system image (64-bit-only)

redfin_beta_64-upb5.230623.006-factory-c4da6a19.zip

下載 Android 14 factory system image (64-bit-only)

下載前,請先同意以下條款及細則。

條款及細則

By clicking to accept, you hereby agree to the following: All use of this development version SDK will be governed by the Android Software Development Kit License Agreement (available at https://developer.android.com/studio/terms and such URL may be updated or changed by Google from time to time), which will terminate when Google issues a final release version. Your testing and feedback are important part of the development process and by using the SDK, you acknowledge that (i) implementation of some features are still under development, (ii) you should not rely on the SDK having the full functionality of a stable release; (iii) you agree not to publicly distribute or ship any application using this SDK as this SDK will no longer be supported after the official Android SDK is released; and (iv) you agree that Google may deliver elements of the SDK to your devices via auto-update (OTA or otherwise, in each case as determined by Google). WITHOUT LIMITING SECTION 10 OF THE ANDROID SOFTWARE DEVELOPMENT KIT LICENSE AGREEMENT, YOU UNDERSTAND THAT A DEVELOPMENT VERSION OF A SDK IS NOT A STABLE RELEASE AND MAY CONTAIN ERRORS, DEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE, INCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR OTHER DEVICE.
下載 Android 14 factory system image (64-bit-only)

oriole_beta_64-upb5.230623.006-factory-98943384.zip

下載 Android 14 factory system image (64-bit-only)

下載前,請先同意以下條款及細則。

條款及細則

By clicking to accept, you hereby agree to the following: All use of this development version SDK will be governed by the Android Software Development Kit License Agreement (available at https://developer.android.com/studio/terms and such URL may be updated or changed by Google from time to time), which will terminate when Google issues a final release version. Your testing and feedback are important part of the development process and by using the SDK, you acknowledge that (i) implementation of some features are still under development, (ii) you should not rely on the SDK having the full functionality of a stable release; (iii) you agree not to publicly distribute or ship any application using this SDK as this SDK will no longer be supported after the official Android SDK is released; and (iv) you agree that Google may deliver elements of the SDK to your devices via auto-update (OTA or otherwise, in each case as determined by Google). WITHOUT LIMITING SECTION 10 OF THE ANDROID SOFTWARE DEVELOPMENT KIT LICENSE AGREEMENT, YOU UNDERSTAND THAT A DEVELOPMENT VERSION OF A SDK IS NOT A STABLE RELEASE AND MAY CONTAIN ERRORS, DEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE, INCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR OTHER DEVICE.
下載 Android 14 factory system image (64-bit-only)

raven_beta_64-upb5.230623.006-factory-67ec40be.zip

下載 Android 13 factory system image (64-bit-only)

下載前,請先同意以下條款及細則。

條款及細則

By clicking to accept, you hereby agree to the following: All use of this development version SDK will be governed by the Android Software Development Kit License Agreement (available at https://developer.android.com/studio/terms and such URL may be updated or changed by Google from time to time), which will terminate when Google issues a final release version. Your testing and feedback are important part of the development process and by using the SDK, you acknowledge that (i) implementation of some features are still under development, (ii) you should not rely on the SDK having the full functionality of a stable release; (iii) you agree not to publicly distribute or ship any application using this SDK as this SDK will no longer be supported after the official Android SDK is released; and (iv) you agree that Google may deliver elements of the SDK to your devices via auto-update (OTA or otherwise, in each case as determined by Google). WITHOUT LIMITING SECTION 10 OF THE ANDROID SOFTWARE DEVELOPMENT KIT LICENSE AGREEMENT, YOU UNDERSTAND THAT A DEVELOPMENT VERSION OF A SDK IS NOT A STABLE RELEASE AND MAY CONTAIN ERRORS, DEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE, INCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR OTHER DEVICE.
下載 Android 13 factory system image (64-bit-only)

bramble_64-t3b3.230413.009-factory-b4be4092.zip

下載 Android 13 factory system image (64-bit-only)

下載前,請先同意以下條款及細則。

條款及細則

By clicking to accept, you hereby agree to the following: All use of this development version SDK will be governed by the Android Software Development Kit License Agreement (available at https://developer.android.com/studio/terms and such URL may be updated or changed by Google from time to time), which will terminate when Google issues a final release version. Your testing and feedback are important part of the development process and by using the SDK, you acknowledge that (i) implementation of some features are still under development, (ii) you should not rely on the SDK having the full functionality of a stable release; (iii) you agree not to publicly distribute or ship any application using this SDK as this SDK will no longer be supported after the official Android SDK is released; and (iv) you agree that Google may deliver elements of the SDK to your devices via auto-update (OTA or otherwise, in each case as determined by Google). WITHOUT LIMITING SECTION 10 OF THE ANDROID SOFTWARE DEVELOPMENT KIT LICENSE AGREEMENT, YOU UNDERSTAND THAT A DEVELOPMENT VERSION OF A SDK IS NOT A STABLE RELEASE AND MAY CONTAIN ERRORS, DEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE, INCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR OTHER DEVICE.
下載 Android 13 factory system image (64-bit-only)

redfin_64-t3b3.230413.009-factory-6e5e027a.zip

下載 Android 13 factory system image (64-bit-only)

下載前,請先同意以下條款及細則。

條款及細則

By clicking to accept, you hereby agree to the following: All use of this development version SDK will be governed by the Android Software Development Kit License Agreement (available at https://developer.android.com/studio/terms and such URL may be updated or changed by Google from time to time), which will terminate when Google issues a final release version. Your testing and feedback are important part of the development process and by using the SDK, you acknowledge that (i) implementation of some features are still under development, (ii) you should not rely on the SDK having the full functionality of a stable release; (iii) you agree not to publicly distribute or ship any application using this SDK as this SDK will no longer be supported after the official Android SDK is released; and (iv) you agree that Google may deliver elements of the SDK to your devices via auto-update (OTA or otherwise, in each case as determined by Google). WITHOUT LIMITING SECTION 10 OF THE ANDROID SOFTWARE DEVELOPMENT KIT LICENSE AGREEMENT, YOU UNDERSTAND THAT A DEVELOPMENT VERSION OF A SDK IS NOT A STABLE RELEASE AND MAY CONTAIN ERRORS, DEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE, INCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR OTHER DEVICE.
下載 Android 13 factory system image (64-bit-only)

oriole_64-t3b3.230413.009-factory-becb9b81.zip

下載 Android 13 factory system image (64-bit-only)

下載前,請先同意以下條款及細則。

條款及細則

By clicking to accept, you hereby agree to the following: All use of this development version SDK will be governed by the Android Software Development Kit License Agreement (available at https://developer.android.com/studio/terms and such URL may be updated or changed by Google from time to time), which will terminate when Google issues a final release version. Your testing and feedback are important part of the development process and by using the SDK, you acknowledge that (i) implementation of some features are still under development, (ii) you should not rely on the SDK having the full functionality of a stable release; (iii) you agree not to publicly distribute or ship any application using this SDK as this SDK will no longer be supported after the official Android SDK is released; and (iv) you agree that Google may deliver elements of the SDK to your devices via auto-update (OTA or otherwise, in each case as determined by Google). WITHOUT LIMITING SECTION 10 OF THE ANDROID SOFTWARE DEVELOPMENT KIT LICENSE AGREEMENT, YOU UNDERSTAND THAT A DEVELOPMENT VERSION OF A SDK IS NOT A STABLE RELEASE AND MAY CONTAIN ERRORS, DEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE, INCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR OTHER DEVICE.
下載 Android 13 factory system image (64-bit-only)

raven_64-t3b3.230413.009-factory-b0ef544e.zip