More work on Android APK building...

For some reason it's not working properly... :(
This commit is contained in:
Ray San 2017-09-26 12:00:50 +02:00
parent 42db9584de
commit 96b8c9dd5a
4 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@
android:versionCode="1" android:versionCode="1"
android:versionName="1.0" > android:versionName="1.0" >
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="16" /> <uses-sdk android:minSdkVersion="16" />
<uses-feature android:glEsVersion="0x00020000" android:required="true" /> <uses-feature android:glEsVersion="0x00020000" android:required="true" />
<!--<supports-gl-texture android:name="GL_OES_compressed_ETC1_RGB8_texture" android:required="true"/>--> <!--<supports-gl-texture android:name="GL_OES_compressed_ETC1_RGB8_texture" android:required="true"/>-->
<!-- We do not have Java code. Therefore android:hasCode is set to false. --> <!-- We do not have Java code. Therefore android:hasCode is set to false. -->

View file

@ -58,7 +58,7 @@ LFLAGS = -L. -Ljni/libs -Ljni -Llib
# Define any libraries to link into executable # Define any libraries to link into executable
# if you want to link libraries (libname.so or libname.a), use the -lname # if you want to link libraries (libname.so or libname.a), use the -lname
LIBS = -lraylib -lopenal -llog -landroid -lEGL -lGLESv2 -lOpenSLES LIBS = -lraylib -llog -landroid -lEGL -lGLESv2 -lOpenSLES
# Building APK # Building APK
# NOTE: typing 'make' will invoke the default target entry called 'all', # NOTE: typing 'make' will invoke the default target entry called 'all',