Disabled libs unnecessary for Alien Blaster
This commit is contained in:
@@ -5,6 +5,6 @@ AppDataDownloadUrl="http://sites.google.com/site/xpelyax/Home/alienblaster110_da
|
|||||||
DownloadToSdcard=n
|
DownloadToSdcard=n
|
||||||
SdlVideoResize=a
|
SdlVideoResize=a
|
||||||
NeedDepthBuffer=n
|
NeedDepthBuffer=n
|
||||||
MultiABI=y
|
MultiABI=n
|
||||||
CompiledLibraries="mad sdl_mixer sdl_image sdl_ttf"
|
CompiledLibraries="sdl_mixer sdl_image"
|
||||||
ReadmeText='^Use accelerometer to navigate menus and control ship^Press "Menu" to select menu and for secondary fire^Press "Call" or touch screen for primary fire^Press "Volume Up/Down" to cycle through weapons'
|
ReadmeText='^Use accelerometer to navigate menus and control ship^Press "Menu" to select menu and for secondary fire^Press "Call" or touch screen for primary fire^Press "Volume Up/Down" to cycle through weapons'
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ SDL_TRACKBALL_KEYUP_DELAY := 1
|
|||||||
# resized in HW-accelerated way, however it eats a tiny bit of CPU
|
# resized in HW-accelerated way, however it eats a tiny bit of CPU
|
||||||
SDL_VIDEO_RENDER_RESIZE := 2
|
SDL_VIDEO_RENDER_RESIZE := 2
|
||||||
|
|
||||||
COMPILED_LIBRARIES := mad sdl_mixer sdl_image sdl_ttf
|
COMPILED_LIBRARIES := sdl_mixer sdl_image
|
||||||
|
|
||||||
# If SDL_Mixer should link to libMAD
|
# If SDL_Mixer should link to libMAD
|
||||||
SDL_MIXER_USE_LIBMAD :=
|
SDL_MIXER_USE_LIBMAD :=
|
||||||
|
|||||||
@@ -5,6 +5,6 @@ APP_PROJECT_PATH := $(call my-dir)/..
|
|||||||
# sdl_image depends on png and jpeg
|
# sdl_image depends on png and jpeg
|
||||||
# sdl_ttf depends on freetype
|
# sdl_ttf depends on freetype
|
||||||
|
|
||||||
APP_MODULES := application sdl_main stlport tremor png jpeg freetype mad sdl_mixer sdl_image sdl_ttf
|
APP_MODULES := application sdl_main stlport tremor png jpeg freetype sdl_mixer sdl_image
|
||||||
|
|
||||||
APP_ABI := armeabi armeabi-v7a
|
APP_ABI := armeabi
|
||||||
|
|||||||
@@ -24,5 +24,5 @@ class Globals {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class LoadLibrary {
|
class LoadLibrary {
|
||||||
public LoadLibrary() { System.loadLibrary("sdl"); System.loadLibrary("mad"); System.loadLibrary("sdl_mixer"); System.loadLibrary("sdl_image"); System.loadLibrary("sdl_ttf"); };
|
public LoadLibrary() { System.loadLibrary("sdl"); System.loadLibrary("sdl_mixer"); System.loadLibrary("sdl_image"); };
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user