久久久久久久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看片 | 91亚洲欧美| 成人免费视频网站在线观看 | 久久夜视频 | 剑来高清在线观看 | 亚洲每日更新 | 国产人免费人成免费视频 | 黄色成人免费看 | 亚洲国产精品成人久久久 | 亚洲一区二区久久 | 久久精品国产亚洲a | 国产欧美日韩一区 | 精品熟人一区二区三区四区 | 精品国产一区二区三区观看不卡 | 成人日韩精品 | 三a毛片 | 亚洲欧美国产精品久久 | 国产 欧美 日韩 一区 | 男女网站免费观看 | 国产精品伦理一区 | 成人免费大片黄在线播放 | 黄色在线观看 | 欧美狠狠操 | 欧美日韩一二三区 | 久久精品国产亚洲一区二区三区 | 手机在线观看 | 一区二区三区高清 | 国产精品久久亚洲 | 99精品免费视频 | 日韩在线观看视频一区 | 天天色天天射天天干 | 午夜av免费| 免费色网址 | 国产精品久久久久一区二区三区 |