Enable ARM64 build, then disable it

This commit is contained in:
khanhduytran0 2020-09-20 10:34:52 +07:00
parent a8aca54d9a
commit e3f89e16a3
17 changed files with 13 additions and 7 deletions

View File

@ -10,13 +10,13 @@ A Minecraft: Java Edition launcher for Android based from Boardwalk. This branch
- [x] **Temporary removed** ~~JVDroid OpenJDK 11 (32 and 64-bit ARM and x86). Partial, no error `can't lock mutex`, but now exit with none output.~~
- [x] OpenJDK 9 Mobile port
- [ ] AWT/Swing for mod installer.Will try own graphics environment~~use `Caciocavallo` project~~.
- [x] OpenGL in OpenJDK environment. Used Boardwalk 2 method.
- [ ] OpenAL 64-bit version
- [ ] Input keyboard and mouse events from ART to OpenJDK environment
- [x] OpenGL in OpenJDK environment
- [ ] OpenAL
- [x] Input keyboard and mouse events from ART to OpenJDK environment
- [ ] Support Minecraft 1.12 and below. Used GLFW stub.
- [x] Support Minecraft 1.13 and above. Will make a wrapper LWJGL2 to 3.
- [ ] More...
## Licenses
## License
- PojavLauncher is licensed under GPLv3.

View File

@ -28,7 +28,7 @@ android {
multiDexEnabled true //important
ndk {
abiFilters "armeabi-v7a"
abiFilters "armeabi-v7a", "arm64-v8a"
}
}

View File

@ -13,7 +13,14 @@ LOCAL_SRC_FILES := \
utils.c
include $(BUILD_SHARED_LIBRARY)
# Helper to get current thread
# include $(CLEAR_VARS)
# LOCAL_MODULE := thread64helper
# LOCAL_SRC_FILES := thread_helper.cpp
# include $(BUILD_SHARED_LIBRARY)
# libawt_xawt without X11
include $(CLEAR_VARS)
LOCAL_PATH := $(LOCAL_PATH)/awt_xawt
include $(CLEAR_VARS)
LOCAL_MODULE := awt_xawt

View File

@ -1,5 +1,4 @@
# NDK_TOOLCHAIN_VERSION := 4.9
APP_PLATFORM := android-21
APP_STL := system
APP_ABI := armeabi-v7a
# arm64-v8a x86 x86_64
# APP_ABI := armeabi-v7a arm64-v8a x86 x86_64