A échoué à transformer le fichier '45907c80e09917e1b776adf038505958' pour faire correspondre les attributs {artifactType=jar} à l'aide de transformer AarTransform

Je suis en utilisant Android 3.0 canaries 4 et la réalisation d'une application. Tout fonctionnait bien jusqu'à hier, mais aujourd'hui quand j'ai ouvert le projet, il m'a donné une erreur

 F:\test projects\SellIT\app\build.gradle
Error:Failed to resolve: Failed to transform file '45907c80e09917e1b776adf038505958' to match attributes {artifactType=jar} using transform AarTransform
<a href="openFile:F:/test projects/SellIT/app/build.gradle">Open File</a>
Error:Failed to resolve: Failed to transform file '0424053f6b3433893454e7542cca3a9d' to match attributes {artifactType=jar} using transform AarTransform
<a href="openFile:F:/test projects/SellIT/app/build.gradle">Open File</a>
Error:Failed to resolve: Failed to transform file 'customtabs-25.0.0.aar' to match attributes {artifactType=android-exploded-aar} using transform ExtractAarTransform
<a href="openFile:F:/test projects/SellIT/app/build.gradle">Open File</a>
Error:Failed to resolve: Failed to transform file 'recyclerview-v7-25.4.0.aar' to match attributes {artifactType=android-exploded-aar} using transform ExtractAarTransform
<a href="openFile:F:/test projects/SellIT/app/build.gradle">Open File</a>
Error:Failed to resolve: Failed to transform file 'b7ae5d97f624a2ac68ed171c25f74f21' to match attributes {artifactType=jar} using transform AarTransform
<a href="openFile:F:/test projects/SellIT/app/build.gradle">Open File</a>
Error:Failed to resolve: Failed to transform file 'firebase-analytics-impl-10.2.4.aar' to match attributes {artifactType=android-exploded-aar} using transform ExtractAarTransform
<a href="openFile:F:/test projects/SellIT/app/build.gradle">Open File</a>
Error:Failed to resolve: Failed to transform file '8a727da2aab64813ae6d20842b03d41f' to match attributes {artifactType=jar} using transform AarTransform
<a href="openFile:F:/test projects/SellIT/app/build.gradle">Open File</a>
Error:Failed to resolve: Failed to transform file 'support-compat-25.4.0.aar' to match attributes {artifactType=android-exploded-aar} using transform ExtractAarTransform
<a href="openFile:F:/test projects/SellIT/app/build.gradle">Open File</a>
Error:Failed to resolve: Failed to transform file 'd0da7bf76907aa33e493551504efa952' to match attributes {artifactType=jar} using transform AarTransform
<a href="openFile:F:/test projects/SellIT/app/build.gradle">Open File</a>

c'est mon build.gradle (app niveau)

    apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "26.0.0"
defaultConfig {
applicationId "android.sellit"
minSdkVersion 16
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:25.4.0'
testImplementation 'junit:junit:4.12'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.google.firebase:firebase-auth:10.2.4'
//Required only if Facebook login support is required
implementation('com.facebook.android:facebook-android-sdk:4.22.1')
implementation 'com.google.firebase:firebase-core:10.2.4'
implementation 'com.google.firebase:firebase-database:10.2.4'
implementation 'com.google.android.gms:play-services-auth:10.2.4'
implementation 'com.android.support:design:25.4.0'
implementation 'com.github.bumptech.glide:glide:4.0.0-RC1'
implementation 'com.google.firebase:firebase-storage:10.2.4'
implementation 'de.hdodenhof:circleimageview:2.1.0'
implementation 'com.google.firebase:firebase-crash:10.2.4'
implementation 'com.google.firebase:firebase-ads:10.2.4'
}
apply plugin: 'com.google.gms.google-services'

Quelqu'un a rencontré une erreur similaire ou il sait que puis-je faire?

merci pour l'edit @Panciz
J'ai eu une erreur similaire où il est dit "a Échoué à transformer le fichier 'uninstalltiontracking.jar" pour le match d'attributs {artifactType=android-classes} à l'aide de transformer JarTransform" sur le passage à android studio 3
alors, comment vous résoudre @PenduDev
ya! j'ai remarqué que l' .jar fichier n'était pas présent dans le répertoire libs, donc j'ai supprimé la ligne implementation...uninstallationtracking.jar à partir des modules gralde fichier.
Avez-vous essayé Invalidate Cache and Restartoption dans le menu Fichier

OriginalL'auteur Anuj B | 2017-07-17