Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gradle build file #227

Open
wants to merge 1 commit into
base: GLES2-AnchorCenter
Choose a base branch
from
Open

Conversation

ross
Copy link

@ross ross commented Jun 6, 2013

android studio library project gradle build file. haven't published anything with it, but it "should" work.

idea/tasks.xml
*.iml
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a reason not include the iml project file?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unfortunately it seems to include project specific values e.g. the :Submodules:AndEngine below.

<facet type="android-gradle" name="Android-Gradle">
  <configuration>
    <option name="GRADLE_PROJECT_PATH" value=":Submodules:AndEngine" />
    <option name="PROJECT_ABSOLUTE_PATH" value="$MODULE_DIR$/../.." />
    <option name="GRADLE_HOME_DIR_PATH" />
  </configuration>
</facet>

i imagine there's some things to be worked out with how things are setup with gradle and android studio. i'm not sure if they intend the iml files to be committed or not to be honest. i've seen them ignored in other projects... there's nothing really important in them at this point, you can just get it in to your project and working by importing module in the project settings dialog. that said it isn't completely hooked up to the build.gradle and settings.gradle files so there's a couple things you have to do there.

in my case i had to add the following to settings.gradle:

include ':Submodules:AndEngine'

and the following line to the dependencies section of build.gradle in my app's file:

compile project(':Submodules:AndEngine')

i assume those two tweaks will go away once gradle and android studio are fully cooperating. perhaps they're some tweaks needed to the iml files as well to avoid needing GRADLE_PROJECT_PATH. if i take that out currently gradle barfs on me...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants