【错误记录】集成 Tinker 热修复报错 ( No such property: variantConfiguration for class: .ApplicationVariantData )
生活随笔
收集整理的這篇文章主要介紹了
【错误记录】集成 Tinker 热修复报错 ( No such property: variantConfiguration for class: .ApplicationVariantData )
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
文章目錄
- 一、報錯信息
- 二、解決方案
一、報錯信息
接入 Tinker 熱修復 , 使用如下 Gradle 插件 ,
// Tinker 的 tinker-patch-gradle-plugin 插件classpath "com.tencent.tinker:tinker-patch-gradle-plugin:1.9.1"應用該插件時報錯 ;
plugins {id 'com.tencent.tinker.patch' }報錯信息如下 ;
> Configure project :app ----------------------tinker build warning ------------------------------------ tinker auto operation: excluding annotation processor and source template from app packaging. Enable dx jumboMode to reduce package size. enable dx jumboMode to reduce package size. disable preDexLibraries to prevent ClassDefNotFoundException when your app is booting.tinker will change your build configs: we will add TINKER_ID=null in your build output manifest file build/intermediates/manifests/full/*if minifyEnabled is true you will find the gen proguard rule file at build/intermediates/tinker_intermediates/tinker_proguard.pro and we will help you to put it in the proguardFiles.if multiDexEnabled is true you will find the gen multiDexKeepProguard file at build/intermediates/tinker_intermediates/tinker_multidexkeep.pro and we will help you to put it in the MultiDexKeepProguardFile.if applyResourceMapping file is exist we will build app apk with resource R.txt file if resources.arsc has changed, you should use applyResource mode to build the new apk! -----------------------------------------------------------------FAILURE: Build failed with an exception.* What went wrong: A problem occurred configuring project ':app'. > No such property: variantConfiguration for class: com.android.build.gradle.internal.variant.ApplicationVariantData* Try: Run with --info or --debug option to get more log output. Run with --scan to get full insights.* Exception is: org.gradle.api.ProjectConfigurationException: A problem occurred configuring project ':app'.at Caused by: groovy.lang.MissingPropertyException: No such property: variantConfiguration for class: com.android.build.gradle.internal.variant.ApplicationVariantDataat com.tencent.tinker.build.gradle.TinkerPatchPlugin$_apply_closure1$_closure2.doCall(TinkerPatchPlugin.groovy:133) * Get more help at https://help.gradle.orgBUILD FAILED in 522ms二、解決方案
原來的 Gradle 和 Gradle 插件版本太高 :
降低 Gradle 及 Gradle 插件版本 :
目前報如下警告 , 可以暫時忽略該警告 ;
API 'variantOutput.getProcessResources()' is obsolete and has been replaced with 'variantOutput.getProcessResourcesProvider()'. It will be removed at the end of 2019. For more information, see https://d.android.com/r/tools/task-configuration-avoidance. To determine what is calling variantOutput.getProcessResources(), use -Pandroid.debug.obsoleteApi=true on the command line to display more information. Affected Modules: app總結
以上是生活随笔為你收集整理的【错误记录】集成 Tinker 热修复报错 ( No such property: variantConfiguration for class: .ApplicationVariantData )的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【Android 文件管理】应用可访问的
- 下一篇: 【Android 热修复】Tinker