我试图在Android上使用名为Rajawali的3D引擎,但它并没有解释我如何在没有gradle的情况下使用它。那么,是否有可能在没有gradle的情况下实现Rajawali,如果是,那该怎么办?
答案 0 :(得分:0)
我的问题并不完全清楚,但我假设您必须将Rajawali添加到现有项目中。 对于build.gradle文件中的那个,您需要添加几行
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
jcenter()
}
}
现在我们需要在依赖项
中的build.gradle(Module:app)中添加一行compile 'com.android.support:appcompat-v7:22.0.0'
这会将Rajawali整合到您的项目中 如果您有其他疑问,请参阅链接https://github.com/Rajawali/Rajawali/wiki/AS---Project-and-Dependency-Setup