[android-porting] Removing packages from AOSP build

2018-02-04 Thread Will Newton
Hi, I'm trying to avoid including some packages in the build of my device but not having much luck. I added a section like this to the Android.mk in my device directory: include $(CLEAR_VARS)

Re: [android-porting] Removing packages from AOSP build

2018-02-05 Thread Joey Troy
Will, I get what your saying. I am not sure of any other way to not force the install of the apps. Since it sounds like your making your own custom release, it maybe best to do periodict repo merges to make sure you are staying in sync with the project to edited repos you have. On Mon, Feb 5, 201

Re: [android-porting] Removing packages from AOSP build

2018-02-05 Thread Will Newton
On Mon, Feb 5, 2018 at 3:10 AM, Joey Troy wrote: > Best place to edit is in the build folder to remove all the extra apps > > https://android.googlesource.com/platform/build/+/master/target/product/core.mk I could edit that file and it would do what I want, but it would be forking upstream code f

Re: [android-porting] Removing packages from AOSP build

2018-02-05 Thread Joey Troy
Best place to edit is in the build folder to remove all the extra apps https://android.googlesource.com/platform/build/+/master/target/product/core.mk On Sun, Feb 4, 2018, 7:25 PM Will Newton wrote: > Hi, > > I'm trying to avoid including some packages in the build of my device but > not having

Re: [android-porting] Removing packages from AOSP build

2018-02-08 Thread Satish Patel
Hi, Other alternative way would be, - create a local manifest inside .repo/local_manifests/.xml - create tags to remove AOSP modules which you do not want for your build - add entry for the modules, which you would like to replace instead This will ensure along with standard AOSP, you stuff ge