X-Git-Url: http://nitlanguage.org diff --git a/src/platform/android.nit b/src/platform/android.nit index 98a017e..a657b3e 100644 --- a/src/platform/android.nit +++ b/src/platform/android.nit @@ -42,7 +42,7 @@ class AndroidPlatform redef fun supports_linker_script do return false - redef fun toolchain(toolcontext) do return new AndroidToolchain(toolcontext) + redef fun toolchain(toolcontext, compiler) do return new AndroidToolchain(toolcontext, compiler) end class AndroidToolchain @@ -52,28 +52,28 @@ class AndroidToolchain redef fun compile_dir do - var android_project_root = "{super}/android/" + var android_project_root = "{root_compile_dir}/android/" self.android_project_root = android_project_root return "{android_project_root}/jni/nit_compile/" end - redef fun default_outname(mainmodule) do return "{mainmodule.name}.apk" + redef fun default_outname do return "{super}.apk" - redef fun write_files(compiler, compile_dir, cfiles) + redef fun write_files(compile_dir, cfiles) do var android_project_root = android_project_root.as(not null) - var project = toolcontext.modelbuilder.android_project_for(compiler.mainmodule) - var short_project_name = compiler.mainmodule.name + var project = new AndroidProject(toolcontext.modelbuilder, compiler.mainmodule) var release = toolcontext.opt_release.value var app_name = project.name - if app_name == null then app_name = compiler.mainmodule.name + if not release then app_name += " Debug" - var app_package = project.java_package - if app_package == null then app_package = "org.nitlanguage.{short_project_name}" + var short_project_name = project.short_name + + var app_package = project.namespace + if not release then app_package += "_debug" var app_version = project.version - if app_version == null then app_version = "1.0" var app_min_api = project.min_api if app_min_api == null then app_min_api = 10 @@ -105,7 +105,7 @@ class AndroidToolchain if not dir.file_exists then dir.mkdir # compile normal C files - super(compiler, compile_dir, cfiles) + super # Gather extra C files generated elsewhere than in super for f in compiler.extern_bodies do @@ -138,11 +138,26 @@ class AndroidToolchain end end - ## Generate delagating makefile + ## Generate Application.mk dir = "{android_project_root}/jni/" """ +APP_ABI := armeabi armeabi-v7a x86 mips +APP_PLATFORM := android-{{{app_target_api}}} +""".write_to_file "{dir}/Application.mk" + + ## Generate delegating makefile + """ include $(call all-subdir-makefiles) - """.write_to_file("{dir}/Android.mk") +""".write_to_file "{dir}/Android.mk" + + # Gather ldflags for Android + var ldflags = new Array[String] + var platform_name = "android" + for mmodule in compiler.mainmodule.in_importation.greaters do + if mmodule.ldflags.keys.has(platform_name) then + ldflags.add_all mmodule.ldflags[platform_name] + end + end ### generate makefile into "{compile_dir}/Android.mk" dir = compile_dir @@ -154,7 +169,7 @@ LOCAL_CFLAGS := -D ANDROID -D WITH_LIBGC LOCAL_MODULE := main LOCAL_SRC_FILES := \\ {{{cfiles.join(" \\\n")}}} -LOCAL_LDLIBS := -llog -landroid -lEGL -lGLESv1_CM -lz libgc.a +LOCAL_LDLIBS := {{{ldflags.join(" ")}}} $(TARGET_ARCH)/libgc.a LOCAL_STATIC_LIBRARIES := android_native_app_glue png include $(BUILD_SHARED_LIBRARY) @@ -164,14 +179,15 @@ $(call import-module,android/native_app_glue) ### generate AndroidManifest.xml dir = android_project_root - """ + var manifest_file = new FileWriter.open("{dir}/AndroidManifest.xml") + manifest_file.write """ + - +""" - - - - +""" + end + manifest_file.write """ {{{project.manifest_application_lines.join("\n")}}} @@ -206,7 +223,8 @@ $(call import-module,android/native_app_glue) - """.write_to_file("{dir}/AndroidManifest.xml") +""" + manifest_file.close ### Link to png sources # libpng is not available on Android NDK @@ -224,13 +242,20 @@ $(call import-module,android/native_app_glue) end # Ensure that android-setup-libgc.sh has been executed - if not "{share_dir}/libgc/lib".file_exists then + if not "{share_dir}/libgc/arm/lib".file_exists then toolcontext.exec_and_check(["{share_dir}/libgc/android-setup-libgc.sh"], "Android project error") end # Copy GC files - toolcontext.exec_and_check(["cp", "{share_dir}/libgc/lib/libgc.a", "{android_project_root}/libgc.a"], "Android project error") - toolcontext.exec_and_check(["ln", "-s", "{share_dir}/libgc/include/gc/", "{android_project_root}/jni/nit_compile/gc"], "Android project error") + for arch in ["arm", "x86", "mips"] do + dir = android_project_root/arch + dir.mkdir + toolcontext.exec_and_check(["cp", "{share_dir}/libgc/{arch}/lib/libgc.a", + dir/"libgc.a"], "Android project error") + end + + toolcontext.exec_and_check(["ln", "-s", "{share_dir}/libgc/arm/include/gc/", + "{compile_dir}/gc"], "Android project error") ### Link to assets (for mnit and others) # This will be accessed from `android_project_root` @@ -263,7 +288,7 @@ $(call import-module,android/native_app_glue) # Android resources folder var res_dir = project_root / "res" if res_dir.file_exists then - # copy the res folder to .nit_compile + # copy the res folder to the compile dir res_dir = res_dir.realpath toolcontext.exec_and_check(["cp", "-R", res_dir, android_project_root], "Android project error") end @@ -273,7 +298,7 @@ $(call import-module,android/native_app_glue) """ {{{app_name}}} -""".write_to_file "{dir}/res/values/strings.xml" +""".write_to_file "{android_project_root}/res/values/strings.xml" end # Android libs folder @@ -283,14 +308,15 @@ $(call import-module,android/native_app_glue) end end - redef fun write_makefile(compiler, compile_dir, cfiles) + redef fun write_makefile(compile_dir, cfiles) do # Do nothing, already done in `write_files` end - redef fun compile_c_code(compiler, compile_dir) + redef fun compile_c_code(compile_dir) do var android_project_root = android_project_root.as(not null) + var short_project_name = compiler.mainmodule.name.replace("-", "_") var release = toolcontext.opt_release.value # Compile C code (and thus Nit) @@ -307,7 +333,7 @@ $(call import-module,android/native_app_glue) var outname = outfile(compiler.mainmodule) if release then - var apk_path = "{android_project_root}/bin/{compiler.mainmodule.name}-release-unsigned.apk" + var apk_path = "{android_project_root}/bin/{short_project_name}-release-unsigned.apk" # Sign APK var keystore_path= "KEYSTORE".environ @@ -315,8 +341,9 @@ $(call import-module,android/native_app_glue) var tsa_server= "TSA_SERVER".environ if key_alias.is_empty then - toolcontext.fatal_error(null, - "Fatal Error: the environment variable `KEY_ALIAS` must be set to use the `--release` option on Android projects.") + toolcontext.error(null, + "Error: the environment variable `KEY_ALIAS` must be set to use the `--release` option on Android projects.") + return end args = ["jarsigner", "-sigalg", "MD5withRSA", "-digestalg", "SHA1", apk_path, key_alias] @@ -337,7 +364,7 @@ $(call import-module,android/native_app_glue) toolcontext.exec_and_check(args, "Android project error") else # Move to the expected output path - args = ["mv", "{android_project_root}/bin/{compiler.mainmodule.name}-debug.apk", outname] + args = ["mv", "{android_project_root}/bin/{short_project_name}-debug.apk", outname] toolcontext.exec_and_check(args, "Android project error") end end