java - Static Library classes not getting compiled into apk -


i trying build application use of android.mk. application depends on android library have exported .jar file located in application' libs folder. after building application clear library' classes isn't included in apk - have done wrong?

local_path:= $(call my-dir)  include $(clear_vars)  local_module_tags := optional  local_static_java_libraries := staticlibrary  local_src_files := $(call all-subdir-java-files)  local_resource_dir += $(local_path)/res local_resource_dir += packages/apps/staticlibrary/res  local_manifest_file := androidmanifest.xml local_package_name := customerservice local_certificate := platform  local_proguard_flag_files := proguard.flags  include $(build_package)  include $(clear_vars)  local_prebuilt_static_java_libraries := staticlibrary/staticlibrary.jar  include $(build_multi_prebuilt) 


Comments

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -