Guest User

Samsung Platform.tar

a guest
Sep 4th, 2024
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | Source Code | 0 0
  1. How to build Module for Platform
  2. - It is only for modules are needed to using Android build system.
  3. - Please check its own install information under its folder for other module.
  4.  
  5. [Step to build]
  6. 1. Get android open source.
  7. : version info - Android 13.0
  8. ( Download site : http://source.android.com )
  9.  
  10. 2. Copy module that you want to build - to original android open source
  11. If same module exist in android open source, you should replace it. (no overwrite)
  12.  
  13. # It is possible to build all modules at once.
  14.  
  15. 3. You should add module name to 'PRODUCT_PACKAGES' in 'build/make/target/product/base_system.mk' as following case.
  16. case 1) libexifa : should add 'libexifa.camera.samsung' to PRODUCT_PACKAGES
  17. case 2) libjpega : should add 'libjpega.camera.samsung' to PRODUCT_PACKAGES
  18. case 3) keyutils : should add 'libknox_keyutils' to PRODUCT_PACKAGES
  19.  
  20.  
  21. ex.) [build/make/target/product/base_system.mk] - add all module name for case 1 ~ 3 at once
  22.  
  23. # libexifa
  24. PRODUCT_PACKAGES += \
  25. libexifa.camera.samsung
  26.  
  27. # libjpega
  28. PRODUCT_PACKAGES += \
  29. libjpega.camera.samsung
  30.  
  31. # KeyUtils
  32. PRODUCT_PACKAGES += \
  33. libknox_keyutils
  34.  
  35. 4. excute build command
  36. ./build_64bit.sh
  37.  
  38. 5. Note :
  39. To download the source code of S/W listed below, please visit http://opensource.samsung.com and find "Mobile -> Mobile Application" menu,
  40. and then, you will be able to download what you want.
  41. You might save time in finding the right one by making use of the search keyword below.
  42. - MdecService.apk : "MdecService"
  43. - SamsungCamera.apk : "Camera"
  44. - Notes40_Removable.apk : "Samsung Notes"
  45. - SamsungCalendar.apk : "SamsungCalendar"
  46. - VoiceNote_5.0.apk : "Voice Recorder"
  47. - SamsungMessages.apk : "Messaging"
  48. - HybridRadio.apk : "FMRadio"
  49. - Fmm.apk : "FMM"
  50. - SBrowser.apk : "SBrowser"
  51.  
Tags: readme
Advertisement
Add Comment
Please, Sign In to add comment