2017-09-08 19 views
-1
dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    compile 'com.android.support:appcompat-v7:21.0.2' 
    compile 'com.google.android.gms:play-services:6.1.71' 
    compile 'com.google.firebase:firebase-database:10.0.1' 
} 

エラー:(30、0)バージョン:6.1.71がGoogleサービスプラグインに必要な最小バージョン(9.0.0)よりも低いです。バージョンの競合を解決できません。

+0

コンパイル 'com.google.android.gms:プレイサービス:9.0.0'?エラーが言っているようにこれを試すことができますか? – Soumya

+0

このエラーが発生していません エラー:(4)アイテムの親を取得中にエラーが発生しました:指定された名前と一致するリソースが見つかりませんでした 'android:TextAppearance.Material.Widget.Button.Inverse'。 エラー:(34)アイテムの親を取得中にエラーが発生しました:指定された名前 'android:Widget.Material.Button.Colored'に一致するリソースが見つかりませんでした。 エラー:(4)アイテムの親を取得中にエラーが発生しました:指定された名前と一致するリソースが見つかりませんでした 'android:TextAppearance.Material.Widget.Button.Inverse'。 エラー:(34)アイテムの親を取得中にエラーが発生しました:指定された名前と一致するリソースが見つかりませんでした 'android:Widget.Material.Button.Colored' –

答えて

1
just bump the version of play services to 10.0.1 
dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    compile 'com.android.support:appcompat-v7:21.0.2' 
    compile 'com.google.android.gms:play-services:10.0.1'<---- change 
    compile 'com.google.firebase:firebase-database:10.0.1' 
} 
+0

このエラーが発生していません エラー:(4) :指定された名前と一致するリソースが見つかりませんでした 'android:TextAppearance.Material.Widget.Button.Inverse'。 エラー:(34)アイテムの親を取得中にエラーが発生しました:指定された名前 'android:Widget.Material.Button.Colored'に一致するリソースが見つかりませんでした。 エラー:(4)アイテムの親を取得中にエラーが発生しました:指定された名前と一致するリソースが見つかりませんでした 'android:TextAppearance.Material.Widget.Button.Inverse'。 エラー:(34)アイテムの親を取得中にエラーが発生しました:指定された名前と一致するリソースが見つかりませんでした 'android:Widget.Material.Button.Colored' –

関連する問題