android - Is it possible to implement Rajawali without using gradle? -
im trying use 3d engine called rajawali on android, doesnt explain how use without gradle. so, possible implement rajawali without gradle, , if is, how?
your question not entirely clear me assuming have add rajawali existing project. in build.gradle file need add few lines
buildscript { repositories { jcenter() mavencentral() } dependencies { classpath 'com.android.tools.build:gradle:1.1.0' // note: not place application dependencies here; belong // in individual module build.gradle files } } allprojects { repositories { maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } jcenter() } }
now need add line build.gradle (module: app) inside dependencies
compile 'com.android.support:appcompat-v7:22.0.0'
that integrate rajawali project if have further doubts refer link https://github.com/rajawali/rajawali/wiki/as---project-and-dependency-setup
Comments
Post a Comment