Scenario:
an app manages different customers using symbols like
now, customer 1 requests source code of the app.
you can’t just send the whole source code, because it will expose customer 2 specific code, which is private to each customer.
is there a simple way to process all source files and remove CUSTOMER2 specific section?
like a preprocessor that will strip #if sections, producing a sanitized copy of the source code.
anyone having the same issue out there?
an app manages different customers using symbols like
B4X:
#if CUSTOMER1
customer-specific code
#end if
#if CUSTOMER2
customer-specific code
#end if
now, customer 1 requests source code of the app.
you can’t just send the whole source code, because it will expose customer 2 specific code, which is private to each customer.
is there a simple way to process all source files and remove CUSTOMER2 specific section?
like a preprocessor that will strip #if sections, producing a sanitized copy of the source code.
anyone having the same issue out there?