mirror of
https://github.com/AngelAuraMC/Amethyst-Android.git
synced 2025-09-12 22:26:56 -04:00
Enable ARM64 build, then disable it
This commit is contained in:
parent
a8aca54d9a
commit
e3f89e16a3
@ -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.
|
||||
|
||||
|
@ -28,7 +28,7 @@ android {
|
||||
multiDexEnabled true //important
|
||||
|
||||
ndk {
|
||||
abiFilters "armeabi-v7a"
|
||||
abiFilters "armeabi-v7a", "arm64-v8a"
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user