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?

https://github.com/rajawali/rajawali

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

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -