私はちょうどcom.firebaseuiコンパイル書き込み0.4.3を、私はエラーました:余分なコードなしで"実行タスクに失敗しました ':アプリ:compileDebugJavaWithJavac'":firebase-UI:
Error:Execution failed for task ':app:compileDebugJavaWithJavac'. > Compilation failed; see the compiler error output for details.
を。ちょうどコンパイルして、エラーが出ます。赤い線はcom.android.support.appcompat-v7:25.3.1(サポートライブラリはまったく同じバージョンを使用する必要があります)を示しています。これは何を意味するのでしょうか?
<?apply plugin: 'com.android.application' android
{ compileSdkVersion 25 buildToolsVersion '25.0.2' defaultConfig { applicationId "com.example.mayur.mahadev"
minSdkVersion 22 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'
packagingOptions { exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE' exclude
'META-INF/LICENSE' exclude
'META-INF/LICENSE.txt' exclude 'META-INF/NOTICE.txt' } }
dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' })compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2' compile 'com.firebase:firebase-client-android:2.5.2'
compile 'com.firebaseui:firebase-ui:0.4.3'
compile 'com.google.firebase:firebase-database:10.0.1' testCompile 'junit:junit:4.12' }
apply plugin: 'com.google.gms.google-services'?>
こんにちは。あなたの完全なgradleファイルを投稿しますか? –
こんにちはa b。投稿を編集して、コミュニティが正しく読むことができるように、gradleファイルを貼り付けてください。 :) –
Ohh ok okありがとう –