- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我看到 Android Plugin for Gradle 有一个 minifyEnabled
属性以及一个 useProguard
属性,如下:
android {
buildTypes {
debug {
minifyEnabled true
useProguard false
}
release {
minifyEnabled true
useProguard true
}
}
}
这两个属性有什么区别?或者,更确切地说,每个的含义是什么?
最佳答案
引自 tools.android.com :
Built-in shrinker
Version 2.0 of Android Plugin for Gradle ships with an experimental built-in code shrinker, which can be used instead of ProGuard. The built-in shrinker supports fast incremental runs and is meant to speed up iteration cycles. It can be enabled using the following code snippet:
android {
buildTypes {
debug {
minifyEnabled true
useProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt')
}
}
}The built-in shrinker can only remove dead code, it does not obfuscate or optimize. It can be configured using the same files as ProGuard, but will ignore all flags related to obfuscation or optimization.
Unlike ProGuard, we support using the built-in shrinker together with Instant Run: depending on the project, it may significantly decrease the initial build and install time. Any methods that become reachable after a code change will appear as newly added to the program and prevent an Instant Run hotswap.
关于android - Android Plugin for Gradle 中的 "minifyEnabled"和 "useProguard"有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37007485/
我正在编写一个 android 项目,并尝试编译它以供发布。在我的项目中,我使用了 3rd 方项目,例如 couchbase-lite。 buildTypes { release {
我的 Assets 文件夹中有一个目录,其中包含用于数据库的 json。 assets/database/database_1/locations.json 当使用 minifyEnabled tru
我的 ProGuard 中有这个类。 -keep,allowshrinking class com.MyClass { public ; protected ; public
Unfortunately XX has stopped. 当我启动我的高效应用程序时,当我设置时,我会立即收到此消息 buildTypes { release { minif
大家好,在更改 build.gradle 属性后 minifyEnabled true 我收到以下错误。我读到如果我们使用 minifyEnabled true 那么 The ProGuard too
我的应用程序在 Debug模式下运行良好。不幸的是,在上传到 Google Play 商店后,我发现该应用程序崩溃了。我搜索了几个类似的问题,所有这些问题都建议禁用 Proguard 或检查日志输出。
我是 android 的初学者,我写过这样的代码。如果我启用 minifyEnabled = true,则不会触发该特定代码,而且我也不知道如何正确调试(我只能记录)。我该怎么办? Datab
使用外部库(SumUp)构建APK时出现此错误 Error:Execution failed for task ':app:transformClassesAndResourcesWithProgua
这是我的错误信息: Unexpected error while performing partial evaluation: Class = [org/apache/log4j/ch
在 build.gradle (app) 文件中我们默认有这个, buildTypes { release { minifyEnabled false prog
我无法在调试和 Release模式下使用 minifyEnabled true 运行 apk。我已经引用了下面的链接,但没有一个对我有用。 1. Android- Error:Execution fa
当我在任何变体(调试或发布)中将 minifiyEnabled 设置为 true 时,它会给出以下错误 - Warning:retrofit.appengine.UrlFetchClient: c
调试器不会在任何断点处停止。我尝试清除所有断点并将它们添加回去,但我在控制台中看到调试语句。 根据 this answer ,在你的应用程序模块的 build.gradle 中,为我的构建变体禁用 m
我无法在调试和 Release模式下使用 minifyEnabled true 运行 apk。我已经引用了下面的链接,但没有一个对我有用。 1. Android- Error:Execution fa
我这几天一直有问题。我正在使用 Firebase 云消息传递向我的 Android 应用程序发送通知。当 minifyEnabled=false 时,通知进入 Release模式。然而,当 minif
我试图通过将 minifyEnabled 和 shrinkResources 设置为 true 来缩小我的 apk 大小,但是在启动时我的应用程序崩溃并出现此错误(简短版本): java.lang.C
我有一个 Android 应用程序,我刚刚完成它的开发并准备在 PlayStore 上发布它。但是,为了避免其他人直接反编译它,我想添加 proguard 安全层。 我尝试在将 minifyEnabl
我有一个应用程序在调试时工作正常,但是当我制作发布版本时,在 build.gradle 文件中使用 minifyEnabled true,它似乎无法工作完全没有了: D/SapphirePocket(
这是我第一次使用 Proguard 文件。我开始了一个新项目,这样我就可以了解更多关于 Proguard 文件的信息。 我的问题是当我启用 Proguard 时出了点问题。 Hello world 从
我需要启用混淆器,所以我将 minifyEnabled 设置为 true。但是,在尝试构建发布 APK 时出现以下错误: Error:Execution failed for task ':app:p
我是一名优秀的程序员,十分优秀!