Shadow&Max Active Member Licensed User Longtime User Jan 17, 2014 #1 If you have several libs checked, and your app doesn't use one or two of them are they still compiled into the final apk? For example, you have the Camera lib checked, and your app doesn't use the camera, is the camera lib still compiled into the finished apk?
If you have several libs checked, and your app doesn't use one or two of them are they still compiled into the final apk? For example, you have the Camera lib checked, and your app doesn't use the camera, is the camera lib still compiled into the finished apk?
LucaMs Expert Licensed User Longtime User Jan 17, 2014 #2 Shadow&Max said: If you have several libs checked, and your app doesn't use one or two of them are they still compiled into the final apk? For example, you have the Camera lib checked, and your app doesn't use the camera, is the camera lib still compiled into the finished apk? Click to expand... I suppose that it is so. However, it is easy to verify: compare the size of the apk. P.S. verified: yes, they are included Last edited: Jan 17, 2014 Upvote 0
Shadow&Max said: If you have several libs checked, and your app doesn't use one or two of them are they still compiled into the final apk? For example, you have the Camera lib checked, and your app doesn't use the camera, is the camera lib still compiled into the finished apk? Click to expand... I suppose that it is so. However, it is easy to verify: compare the size of the apk. P.S. verified: yes, they are included
Erel B4X founder Staff member Licensed User Longtime User Jan 17, 2014 #3 That is correct. Referenced libraries are compiled into the APK. Note that the permissions will not be added. Permissions are only added when you declare an object that requires the permissions. Upvote 0
That is correct. Referenced libraries are compiled into the APK. Note that the permissions will not be added. Permissions are only added when you declare an object that requires the permissions.