禁用build.gradle中的一些代码
/* signingConfigs { debug { storeFile file("config/debug.keystore") } release { storeFile file("config/release.keystore") storePassword RELEASE_STORE_PASSWORD keyAlias RELEASE_KEY_ALIAS keyPassword RELEASE_KEY_PASSWORD } }*/ buildTypes { debug { debuggable true jniDebuggable true // signingConfig signingConfigs.debug } release { debuggable false jniDebuggable false // signingConfig signingConfigs.release } foss { debuggable false jniDebuggable false // signingConfig signingConfigs.release } }