我正在尝试将ASNE集成到我的libGDX项目中。我在每个项目中添加了以下几行(":android / core / desktop / html / ios")'阻止它内部的依赖'块:
compile 'com.github.asne:asne-facebook:0.3.3'
compile 'com.github.asne:asne-twitter:0.3.3'
compile fileTree(dir: 'libs', include: '*.jar')
因此,作为示例,项目(":core")块看起来像这样:
project(":core") {
apply plugin: "java"
dependencies {
compile 'com.github.asne:asne-facebook:0.3.3'
compile 'com.github.asne:asne-twitter:0.3.3'
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
compile fileTree(dir: 'libs', include: '*.jar')
}
}
当尝试导入其中一个类时,我得到一个"导入com.github无法解析"错误:
import com.github.gorbin.asne.core.SocialNetwork;
如何使用ASNE的课程?
答案 0 :(得分:0)
在Eclipse中:Project > Clean
。