0
我嘗試在我的項目中包含aacdecoder(https://github.com/vbartacek/aacdecoder-android)。在解碼器自述說我的依賴是android studio import maven project without gradle
<dependency>
<groupId>com.spoledge.aacdecoder</groupId>
<artifactId>aacdecoder-lib</artifactId>
<version>0.8</version>
<type>apklib</type>
</dependency>
,但是當我在我的build.gradle使用這樣
compile 'com.spoledge.aacdecoder:aacdecoder-lib:0.8'
當我嘗試同步它,它失敗。
後jitpack.io(感謝OleGG),像在圖像(下行),它不是像外行人apper。
感謝它是工作,但我怎麼能導入我的課,因爲這是工作導入com.spoledge.aacdecoder.AACPlayer;但我不能使用import com.github或com.spoledge。他們不會在com之後來。 – eren
可能是,jitpack無法將github repo轉換爲存檔。所以,當您需要手動創建庫時,我們又回到了這種情況 – OleGG