例如,這裏是MikePenz MaterialDrawer庫:如何找到gradle這個依賴URL
compile('com.mikepenz:materialdrawer:[email protected]') {
transitive = true
}
這裏是另外一個用於FancyButtons庫
compile 'com.github.medyo:fancybuttons:[email protected]'
在哪裏這些編譯線從何而來?我問,因爲我剛剛分叉了一個項目,做了一些小改動,現在我想在我的應用中使用這個項目,但我不想下載項目,導入模塊到Android Studio中,然後從那裏開始(I沒有多少運氣)。我怎樣才能創建一個單行的片段。
Here's the project I want to compile using this method