Suppress warning of javax.annotation.Nullable in checked in r8 compilation
Change-Id: I9f7b0d86c6fcde90bece7be485b28a8ad7e1aaca
diff --git a/tools/run_on_app.py b/tools/run_on_app.py
index 8667a9e..7bfaecf 100755
--- a/tools/run_on_app.py
+++ b/tools/run_on_app.py
@@ -597,6 +597,11 @@
sanitized_lib_path, values['libraries'], values['inputs'])
libraries = [sanitized_lib_path]
app_provided_pg_conf = True
+ if 'pgconf_extra' in values:
+ extra_conf = os.path.join(os.path.abspath(outdir), 'pgconf_extra')
+ with open(extra_conf, 'w') as extra_f:
+ extra_f.write(values['pgconf_extra'])
+ args.extend(['--pg-conf', extra_conf])
if options.k:
args.extend(['--pg-conf', options.k])
if 'maindexrules' in values: