... <看更多>
「android:debuggable」的推薦目錄:
- 關於android:debuggable 在 [問題] AndroidStudio debuggable false - 看板AndroidDev 的評價
- 關於android:debuggable 在 Android: how to mark my app as debuggable? - Stack Overflow 的評價
- 關於android:debuggable 在 How to make a Release Android App debuggable - gists ... 的評價
- 關於android:debuggable 在 Uploading APK build to Google Play Console error "You ... 的評價
- 關於android:debuggable 在 修改debuggable调试手机应用 的評價
- 關於android:debuggable 在 You uploaded a debuggable APK or Android App Bundle in ... 的評價
android:debuggable 在 How to make a Release Android App debuggable - gists ... 的推薦與評價
How to make a Release Android App debuggable. GitHub Gist: instantly share code, notes, and snippets. ... <看更多>
android:debuggable 在 Uploading APK build to Google Play Console error "You ... 的推薦與評價
You uploaded a debuggable APK or Android App Bundle. For security reasons you need to disable debugging before it can be published in Google ... ... <看更多>
相關內容
android:debuggable 在 修改debuggable调试手机应用 的推薦與評價
android :debuggable="true". 属性的安装包,导致无法调试应用. 在网上经过查阅资料后,发现想要调试手机上的app只要达到以下条件之一即可:. ... <看更多>
android:debuggable 在 You uploaded a debuggable APK or Android App Bundle in ... 的推薦與評價
You uploaded a debuggable APK or Android App Bundle.Visit Facebook Group : https://www.facebook.com ... ... <看更多>
android:debuggable 在 [問題] AndroidStudio debuggable false - 看板AndroidDev 的推薦與評價
各位碩碩 大家好
詢問一個問題
最近把一個已上架的app
從Eclipse 移植到Android Studio上去了
因為要重新上架 所以要以release的版本來弄
之前在Eclipse內
於AndroidManifest 設置一個
<application
android:debuggable="false"
就搞定了 可以把所以logcat都藏起來
於Android Studio內
要多設定 gradle
於
buildTypes{
debug{
debuggable true
....etc
}
release{
debuggable false
....etc
}
如此這般過後 以release的方式 signed過產生出來的apk
被google 打槍 告知
上傳失敗
您剛上傳了可偵錯的APK 基於安全性考量 您必須先停用APK的偵錯功能
才能在Google Play發佈.
我安裝完這個release的apk 接上console後
也的確看到了 我寫入的Logcat
也有在一開始 把 debuggle的值倒出來 用Logcat印出 的確是false...
卻沒有效果
請問有人有遇到這樣的狀態嗎?
debuggable 設定為false 應該會隱藏才是
還是我的理解有錯誤
還是Android Studio 有其他的地方要多設定呢?
感謝看完
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 36.228.15.239
※ 文章網址: https://www.ptt.cc/bbs/AndroidDev/M.1439983369.A.284.html
... <看更多>