android-gradle – AirWatch似乎与Gradle 3.0.0-beta1的Android插件不兼容

前端之家收集整理的这篇文章主要介绍了android-gradle – AirWatch似乎与Gradle 3.0.0-beta1的Android插件不兼容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在将我的顶级build.gradle更改为使用Gradle 3.0.0-beta3的 Android插件以及Gradle 4.1后,AirWatch无法从APK中读取信息(如versionCode和versionName).
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0-beta3'


        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

ext {
    roomVersion = '1.0.0-alpha9'
    supportLibVersion = '26.0.1'
}

这是一个已知的问题?任何解决方法

解决方法

Airwatch与新的AAPT2工具存在问题,与AAPT相比,它似乎以压缩形式编译Manifest.xml文件. AAPT2成为Android Studio 3的标准,但你可以通过放置线路轻松回到AAPT
android.enableAapt2=false

在项目的gradle.properties文件中.至少解决了我们项目中的问题.

原文链接:https://www.f2er.com/android/308640.html

猜你在找的Android相关文章