<android> how to quickly replicate customer-specific resources to out

Source: Internet
Author: User

1. Refer to Android native copy ringtones
A
F:\project\a33\android\build\target\product\full_base.mk
# Get Some sounds
$ (call inherit-product-if-exists, frameworks/base/data/sounds/allaudio.mk)

b
Android\frameworks\base\data\sounds\allaudio.mk
Local_path: = Frameworks/base/data/sounds
Product_copy_files + = \
$ (local_path)/alarm_beep_01.ogg:system/media/audio/alarms/alarm_beep_01.ogg \


For modules is to take this approach, in the Project MK file declaration Modules.mk, and then create a new folder to copy the resources in
F:\project\a33\android\device\softwinner\astar-wifionly\modules\modules.mk
Product_copy_files + = \
$ (call find-copy-subdir-files,*,$ (Local_path)/modules,system/vendor/modules)


However, this approach can only be for resource-type files, try to copy the APK to the app (lazy-_-!) has been detected by the system failed
Instead, use the shell's CP copy Resource
Local_path: = device/softwinner/xxx/xxx
IFNEQ (, $ (out))
$ (Shell Mkdir-p $ (out)/system/app/)
$ (Shell CP-RF $ (Local_path)/app/*.apk $ (out)/system/app/)
endif

<android> how to quickly replicate customer-specific resources to out

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.