'com.google.guava:guava:22.0'
'junit:junit:4.12'
'グループ : 名前 : バージョン'
'com.google.guava:guava:22.0'
グループ:com.google.guava
名前:guava
バージョン:22.0
'junit:junit:4.12'
グループ:junit
名前:junit
バージョン:4.12
group:'グループ', name:'名前', version:'バージョン'
compile 'com.google.guava:guava:22.0'
↓
compile group:'com.google.guava', name:'guava', version:'22.0'
testCompile 'junit:junit:4.12'
↓
testCompile group:'junit', name:'junit', version:'4.12'
※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
repositories { jcenter() } dependencies { compile 'com.google.guava:guava:22.0' testCompile 'junit:junit:4.12' }
<< 前へ |