Building doesn't work

Issue #1 new
David K created an issue

I could not build a clean clone of your sources due to missing mips architecture. I could solve this problem by setting the version of gradle and the google tools to a higher version. See the files:

https://bitbucket.org/daviel/love-android-sdl2/src/11.2/build.gradle

https://bitbucket.org/daviel/love-android-sdl2/src/master/gradle/wrapper/gradle-wrapper.properties

I tried to create a pull request for your repo but couldn't due to missing permissions(access denied error).

Comments (8)

  1. Miku AuahDark repo owner

    It's strange that it's looking for MIPS while I clearly state to only build native libs for armeabi-v7a and arm64-v8a as in love/build.gradle line 24.

  2. David K reporter

    I have red something about that it's due to a bad version of the google tools. That was the reason to change the version after all.

  3. Miku AuahDark repo owner

    It's strange that I can't reproduce it with gradle 3.0.1, build tools 28.0.3, and NDK r16b.

  4. David K reporter

    Still not working. I had to change build.gradle like so:

    From: repositories { google() }

    To: allprojects { repositories { google() jcenter() } }

  5. Miku AuahDark repo owner

    What version of build-tools and NDK you're using? I'm using 28.03 and r16b respectively.

  6. Log in to comment