您的位置:首页 > 移动开发 > Android开发

android.mk文件编写

2017-01-12 10:44 555 查看
Building a simple APK

  LOCAL_PATH := $(call my-dir)

  include $(CLEAR_VARS)

   

  # Build all java files in the java subdirectory

  LOCAL_SRC_FILES := $(call all-subdir-java-files)

   

  # Name of the APK to build

  LOCAL_PACKAGE_NAME := LocalPackage

   

  # Tell it to build an APK

  include $(BUILD_PACKAGE)

Building a APK that depends on a static .jar file

  LOCAL_PATH := $(call my-dir)

  include $(CLEAR_VARS)

   

  # List of static libraries to include in the package

  LOCAL_STATIC_JAVA_LIBRARIES := static-library

   

  # Build all java files in the java subdirectory

  LOCAL_SRC_FILES := $(call all-subdir-java-files)

   

  # Name of the APK to build

  LOCAL_PACKAGE_NAME := LocalPackage

   

  # Tell it to build an APK

  include $(BUILD_PACKAGE)

Building a APK that should be signed with the platform key

  LOCAL_PATH := $(call my-dir)

  include $(CLEAR_VARS)

   

  # Build all java files in the java subdirectory

  LOCAL_SRC_FILES := $(call all-subdir-java-files)

   

  # Name of the APK to build

  LOCAL_PACKAGE_NAME := LocalPackage

   

  LOCAL_CERTIFICATE := platform

   

  # Tell it to build an APK

  include $(BUILD_PACKAGE)

Building a APK that should be signed with a specific vendor key

  LOCAL_PATH := $(call my-dir)

  include $(CLEAR_VARS)

   

  # Build all java files in the java subdirectory

  LOCAL_SRC_FILES := $(call all-subdir-java-files)

   

  # Name of the APK to build

  LOCAL_PACKAGE_NAME := LocalPackage

   

  LOCAL_CERTIFICATE := vendor/example/certs/app

   

  # Tell it to build an APK

  include $(BUILD_PACKAGE)

Adding a prebuilt APK

  LOCAL_PATH := $(call my-dir)

  include $(CLEAR_VARS)

   

  # Module name should match apk name to be installed.

  LOCAL_MODULE := LocalModuleName

  LOCAL_SRC_FILES := $(LOCAL_MODULE).apk

  LOCAL_MODULE_CLASS := APPS

  LOCAL_MODULE_SUFFIX := $(COMMON_ANDROID_PACKAGE_SUFFIX)

   

  include $(BUILD_PREBUILT)

Adding a Static Java Library

  LOCAL_PATH := $(call my-dir)

  include $(CLEAR_VARS)

   

  # Build all java files in the java subdirectory

  LOCAL_SRC_FILES := $(call all-subdir-java-files)

   

  # Any libraries that this library depends on

  LOCAL_JAVA_LIBRARIES := android.test.runner

   

  # The name of the jar file to create

  LOCAL_MODULE := sample

   

  # Build a static jar file.

  include $(BUILD_STATIC_JAVA_LIBRARY)

找到点相关资料,现在只试了使用jar库,可以使用。

非常感谢各位!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: