- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
一直以来,我的构建过程没有任何问题。我正在使用最新的build.gradle
。我正在使用Android Studio 3.1.3。
build.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.google.gms:google-services:3.2.0'
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url "https://jitpack.io"
}
}
}
build.gradle
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt', 'proguard-google-api-client.txt'
lintOptions {
disable 'MissingTranslation'
}
}
}
getDefaultProguardFile('proguard-android.txt')
的内容没有被提取。
C:\Users\yccheok\AppData\Local\Android\Sdk\tools\proguard\proguard-android.txt
的内容复制到我的项目
proguard-project.txt
中。该问题将解决。
def lifecycle_version = "1.1.1"
// ViewModel and LiveData
implementation "android.arch.lifecycle:extensions:$lifecycle_version"
// alternately - if using Java8, use the following instead of compiler
implementation "android.arch.lifecycle:common-java8:$lifecycle_version"
build.gradle
中。但是,我不确定这与我的保障规则有何关系。
最佳答案
根据Android Documentation,默认的proguard文件将复制到目录project-dir/build/intermediates/proguard-files/
中。
检查此目录是否存在。否则,您可能没有创建权限。这可能会导致问题。
关于android - 为什么构建过程会忽略proguardFiles getDefaultProguardFile ('proguard-android.txt'),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51693786/
我试图构建一个应用程序,其中包含一个带有 proguard 的库模块 La,我注意到该库没有被混淆。试图理解为什么。此时此刻,这是我的 buildType: release { minifyEnab
您好,我正在尝试在 cmd 上运行“ant clean debug”命令。但是我得到了返回的空值:1 个错误。 BUILD FAILED C:\Program Files (x86)\Android\
在将 DexGuard 与 android studio 一起使用时,我们始终需要在发布版本中包含一行,那就是 proguardFile getDefaultDexGuardFile('dexguar
我已经创建了一个 multidex 应用程序。但是关于混淆器,我在 build.gradle 中有以下内容: android { defaultConfig { ...
我正在尝试运行来自以下来源的 AR 示例应用程序:https://artoolkit.org/documentation/doku.php?id=4_Android:android_examples
我是一名优秀的程序员,十分优秀!