久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

  • <legend id='a9s14'><style id='a9s14'><dir id='a9s14'><q id='a9s14'></q></dir></style></legend>

    <small id='a9s14'></small><noframes id='a9s14'>

        <tfoot id='a9s14'></tfoot>

        • <bdo id='a9s14'></bdo><ul id='a9s14'></ul>
        <i id='a9s14'><tr id='a9s14'><dt id='a9s14'><q id='a9s14'><span id='a9s14'><b id='a9s14'><form id='a9s14'><ins id='a9s14'></ins><ul id='a9s14'></ul><sub id='a9s14'></sub></form><legend id='a9s14'></legend><bdo id='a9s14'><pre id='a9s14'><center id='a9s14'></center></pre></bdo></b><th id='a9s14'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='a9s14'><tfoot id='a9s14'></tfoot><dl id='a9s14'><fieldset id='a9s14'></fieldset></dl></div>

        armeabi-v7a、arm64-v8a、x86 有什么區別?

        What is the difference between armeabi-v7a, arm64-v8a, x86?(armeabi-v7a、arm64-v8a、x86 有什么區別?)

          <i id='peFOr'><tr id='peFOr'><dt id='peFOr'><q id='peFOr'><span id='peFOr'><b id='peFOr'><form id='peFOr'><ins id='peFOr'></ins><ul id='peFOr'></ul><sub id='peFOr'></sub></form><legend id='peFOr'></legend><bdo id='peFOr'><pre id='peFOr'><center id='peFOr'></center></pre></bdo></b><th id='peFOr'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='peFOr'><tfoot id='peFOr'></tfoot><dl id='peFOr'><fieldset id='peFOr'></fieldset></dl></div>
          <tfoot id='peFOr'></tfoot>
          1. <legend id='peFOr'><style id='peFOr'><dir id='peFOr'><q id='peFOr'></q></dir></style></legend>
              <tbody id='peFOr'></tbody>
            • <small id='peFOr'></small><noframes id='peFOr'>

              • <bdo id='peFOr'></bdo><ul id='peFOr'></ul>

                  本文介紹了armeabi-v7a、arm64-v8a、x86 有什么區別?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我正在 Kivy 上開發一個 Android 應用程序.我正在使用 Buildozer 編譯一個 APK 文件.Buildozer spec文件里有一個設置android.arch = armeabi-v7a,這個我沒看懂.

                  I am working on an Android App on Kivy. I am using Buildozer to compile an APK file. In the Buildozer spec file, there's a setting android.arch = armeabi-v7a, I didn't understand this.

                  此外,當我使用命令 buildozer -v android debug 生成 APK 文件并使用命令 adb install bin/.apk 安裝它時 -它沒有在我的 Android 手機上打開.

                  Also, when I generated the APK file using the command buildozer -v android debug and installed it using the command adb install bin/<appname>.apk - it didn't Open on my Android Phone.

                  推薦答案

                  這些是 CPU 指令集.大多數情況下你不必擔心它,默認值很好,但由于最近的一些變化,我一直想在文檔中添加一些關于它的內容.

                  These are CPU instruction sets. Mostly you don't have to worry about it, the default is fine, but I've been meaning to add something to the docs about it due to some recent changes.

                  基本上,給定的 Android 設備可能有一個 arm 或一個 x86 cpu(或者甚至是其他東西,但這并不重要),這些只是來自不同制造商的不同架構類型.Arm cpus 是最常見的,但 x86 并不罕見.編譯代碼時,輸??出取決于架構目標.當您構建 Kivy 應用程序時,您指定其中一種架構,然后該應用程序將僅在該類型的設備上運行.如果您想支持所有設備,您可以編譯多個 APK 來分發 - Play 商店可以讓您上傳多個,并且會為每個設備發送正確的一個.

                  Basically, a given Android device might have an arm or an x86 cpu (or even something else but that's not important), these are just different architecture types from different manufacturers. Arm cpus are most common, but x86 is not unusual. When you compile code, the output depends on the architecture target. When you build a Kivy app, you specify one of the architectures and then the app will only work on that type of the device. If you want to support all devices, you can compile multiple APKs to distribute - the Play store will let you upload more than one, and will send each device the right one.

                  在給定的架構類型中,有多個版本.armeabi-v7a 是較舊的目標,對于 32 位 arm cpu,幾乎所有 arm 設備都支持此目標.arm64-v8a 是較新的 64 位目標(類似于臺式計算機中的 32 位 -> 64 位轉換).我認為大多數新設備都是 64 位的,但不確定.arm64-v8a 設備可以運行針對 armeabi-v7a 編譯的代碼,它向后兼容.

                  Within a given architecture type there are multiple versions. armeabi-v7a is the older target, for 32 bit arm cpus, almost all arm devices support this target. arm64-v8a is the more recent 64 bit target (similar to the 32-bit -> 64 bit transition in desktop computers). I think most new devices are 64 bit, but not sure. arm64-v8a devices can run code compiled against armeabi-v7a, it's backwards compatible.

                  從今年晚些時候開始,Play 商店將要求您至少上傳 arm64-v8a APK,因為這樣可以為較新的設備提供最佳支持.您還可以上傳其他 APK 以支持其他設備類型.

                  As of later this year, the Play store will require you to upload an arm64-v8a APK as the minimum, because this gives the best support for newer devices. You will also be able to upload other APKs to support other device types.

                  這還不是全部:一些 x86 設備有一個特殊的庫,可以讓它們運行為 arm 設備編譯的代碼.我不確定這有多普遍,但似乎很普遍.

                  That isn't quite the full story: some x86 devices have a special library that lets them run code compiled for arm devices. I'm not sure how widespread this is, but it seems pretty common.

                  對于您的應用問題,請使用 adb logcat 查看問題所在.

                  For your app issue, use adb logcat to see what's wrong.

                  這篇關于armeabi-v7a、arm64-v8a、x86 有什么區別?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Get user#39;s current location using GPS(使用 GPS 獲取用戶的當前位置)
                  IllegalArgumentException thrown by requestLocationUpdate()(requestLocationUpdate() 拋出的 IllegalArgumentException)
                  How reliable is LocationManager#39;s getLastKnownLocation and how often is it updated?(LocationManager 的 getLastKnownLocation 有多可靠,多久更新一次?)
                  How to detect Location Provider ? GPS or Network Provider(如何檢測位置提供者?GPS 或網絡提供商)
                  Get current location during app launch(在應用啟動期間獲取當前位置)
                  locationManager.getLastKnownLocation() return null(locationManager.getLastKnownLocation() 返回 null)

                  <small id='7EnuS'></small><noframes id='7EnuS'>

                      <bdo id='7EnuS'></bdo><ul id='7EnuS'></ul>

                        <legend id='7EnuS'><style id='7EnuS'><dir id='7EnuS'><q id='7EnuS'></q></dir></style></legend>

                        1. <tfoot id='7EnuS'></tfoot>

                            <tbody id='7EnuS'></tbody>
                        2. <i id='7EnuS'><tr id='7EnuS'><dt id='7EnuS'><q id='7EnuS'><span id='7EnuS'><b id='7EnuS'><form id='7EnuS'><ins id='7EnuS'></ins><ul id='7EnuS'></ul><sub id='7EnuS'></sub></form><legend id='7EnuS'></legend><bdo id='7EnuS'><pre id='7EnuS'><center id='7EnuS'></center></pre></bdo></b><th id='7EnuS'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='7EnuS'><tfoot id='7EnuS'></tfoot><dl id='7EnuS'><fieldset id='7EnuS'></fieldset></dl></div>
                          • 主站蜘蛛池模板: 美女福利视频 | 日韩欧美一区二区三区 | 国产伦精品一区二区三毛 | 久久美女网 | 99riav3国产精品视频 | 日日夜夜免费精品 | 欧美精品第三页 | 亚洲国产精品精华素 | 欧美视频中文字幕 | 久久视频免费看 | 亚洲一区二区三区观看 | 久久久久久国产精品免费免费狐狸 | 91在线网站 | 91性高湖久久久久久久久_久久99 | 国产精品美女久久久久久久网站 | 成人免费久久 | 亚洲 欧美 另类 日韩 | 成人午夜免费视频 | 黄色成人免费看 | 久久久久久久一区二区三区 | 中文字幕在线观看一区二区 | 91精品久久久久久久久 | 国产人成精品一区二区三 | 亚洲欧美一区二区三区在线 | 国产福利网站 | 午夜视频在线视频 | 亚洲九九精品 | 不卡视频一区二区三区 | 国产欧美日韩久久久 | 亚洲精品久久久久久久久久久 | 少妇一级淫片免费放播放 | 五月槐花香 | 欧美天堂 | 自拍偷拍小视频 | 欧美三级在线 | 一级特黄色毛片 | 国产91丝袜在线播放 | 在线播放第一页 | 天堂视频免费 | 亚洲 欧美 日韩在线 | 久久电影一区 |