编译应用时的Android.mk文件

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)

你可能感兴趣的:(java,Module,Build,Path,include,library)