简体   繁体   English

Android Studio 0.5.1中的可调试false

[英]debuggable false in Android Studio 0.5.1

in the version 0.4.2 i write in the AndroidManifest 在0.4.2版本中,我在AndroidManifest中编写了

android:debuggable="false" to upload to play.store android:debuggable =“ false”上传到play.store

but in the 0.5.1, i do not what to do. 但在0.5.1中,我不做什么。 Please, help me. 请帮我。

y resolved my problem with y解决了我的问题

 buildTypes {
    release {
        runProguard false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
    }
    foo{
        debuggable false //add this
    }
}

in the androidmanifest 在androidmanifest中

i resolved the problem with 我解决了问题

buildTypes {
release {
    runProguard false
    proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
foo{
    debuggable false //add this
}

} }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM