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

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

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

      如何在kivy項目中隱藏python代碼文件和其他相關文

      How to hide python code file and other related files in a kivy project(如何在kivy項目中隱藏python代碼文件和其他相關文件)

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

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

              • 本文介紹了如何在kivy項目中隱藏python代碼文件和其他相關文件的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                問題描述

                我最近在 Google Play 上發布了一個用 Python/Kivy 編寫的 Android 應用程序.通常,build.py"腳本會將整個項目文件打包到一個文件夾中,即應用程序包文件夾.但是如果我在安裝 apk 后在手機上查看這個包的內容,我可以找到 "android.txt" 文件,即 ".kv/.kv~" 文件和 ".py~"* 和 *"pyo" 文件.

                I have recently published an Android application on Google Play written in Python/Kivy. Normally the "build.py" script would wrap the whole project files into one single folder that is the application package folder. But if i check the content of this package on my phone after the installation of the apk i can find the "android.txt" file, the ".kv/.kv~" file and the ".py~"*and *"pyo" files.

                我的問題是:公開源代碼文件是否安全,或者我的項目編譯中是否缺少某些東西?更讓我惱火的是暴露整個項目源代碼的臨時文件 *.kv~.py~.*

                My question is: is this safe to expose the source code files or is there something that i am missing in the compilation of my project ? What is annoying me more are the temporary files *.kv~ and .py~ that are exposing the whole project source code.*

                但我應該提到我對 Kivy 項目和 Kivy 團隊的感激和尊重.他們的努力使我能夠使用 Python 構建和發布一個不錯的 Android 應用程序,這讓我感到非常自豪.非常感謝 Kivy 團隊.

                But i should mention the gratitude and the respect i have for the Kivy project and the Kivy team. Their efforts allowed me to build and publish a nice Android application with Python that i am really proud of. Thank you so much Kivy team.

                推薦答案

                我最近在 Google Play 上發布了一個用 Python/Kivy 編寫的 Android 應用程序

                I have recently published an Android application on Google Play written in Python/Kivy

                恭喜.請問是什么app?

                Congratulations. May I ask what app it is?

                我的問題是:公開源代碼文件是否安全,或者我的項目編譯中是否缺少某些內容?更讓我惱火的是臨時文件 .kv~ 和 .py~ 暴露了整個項目的源代碼.

                My question is: is this safe to expose the source code files or is there something that i am missing in the compilation of my project ? What is annoying me more are the temporary files .kv~ and .py~ that are exposing the whole project source code.

                正如 TwilightSun 所解釋的,其中一些文件是編輯器備份,您可以通過修改 buildozer.spec 文件或直接使用的等效 python-for-android 命令從 apk 中刪除或排除這些文件.

                As TwilightSun has explained, some of these files are editor backups, which you can remove or exclude from the apk by modifying your buildozer.spec file or the equivalent python-for-android commands if using that directly.

                但是,更一般地說,如果您認真對待混淆代碼,則需要采取進一步措施.我不是專家,但這可能包括將您的 kv 代碼移動到 python 文件(使用 Builder.load_string)和使用 cython 編譯整個項目.生成的二進制文件將比默認包含的 python .pyo 字節碼更難反編譯.

                However, more generally, if you are serious about obfuscating your code you will want to take further steps. I'm no expert, but probably this would include things like moving your kv code to a python file (with Builder.load_string) and compiling your whole project with cython. The resulting binaries will be harder to decompile than the python .pyo bytecode that is included by default.

                這篇關于如何在kivy項目中隱藏python代碼文件和其他相關文件的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持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)
                <tfoot id='8pPgN'></tfoot>

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

                    <small id='8pPgN'></small><noframes id='8pPgN'>

                      <bdo id='8pPgN'></bdo><ul id='8pPgN'></ul>
                        <tbody id='8pPgN'></tbody>
                          主站蜘蛛池模板: 久久成人综合 | 色综合欧美 | 亚洲国产精品久久久久秋霞不卡 | 中文字幕乱码一区二区三区 | 中文在线日韩 | 我爱操 | 欧洲亚洲精品久久久久 | 在线成人av | 欧美成人一区二区三区 | 欧美一区二区激情三区 | 3p视频在线观看 | 国产在线视频三区 | 伊人伊人 | 成人国产精品久久 | 天天干狠狠操 | 日韩精品在线看 | 国产一区在线免费观看 | 欧美一区2区三区4区公司二百 | 成人在线视频免费观看 | 国产精品视频入口 | 久久国产欧美日韩精品 | 老司机免费视频 | 国产欧美日韩一区二区三区在线 | 成人在线免费视频 | 国产精品成av人在线视午夜片 | 国产在线一区二区 | 中文字幕电影在线观看 | 久久综合狠狠综合久久综合88 | 99re在线观看| 午夜电影在线播放 | 草草在线观看 | 精品久久不卡 | 日本免费一区二区三区 | 欧美成人a| 国产成人在线视频免费观看 | 无吗视频 | 国产91精品网站 | 在线播放国产一区二区三区 | 激情久久网 | 亚洲精品二区 | 草久久|