How to create custom field using package

My goal is to create custom field with inline edit set to no.
Part of manifest.php below

		'custom_fields'=>array (

		        //NIP
		        array(
		            'name' => 'amg_nip',
		            'label' => 'LBL_NIP',
		            'type' => 'varchar',
		            'module' => 'Accounts',
		            'help' => '',
		            'comment' => '',
		            'default_value' => '',
		            'max_size' => 20,
		            'required' => false, 
		            'reportable' => true, 
		            'audited' => false, 
		            'importable' => true, 
		            'duplicate_merge' => false, 
		            'inline_edit' => '0',
		        ),
		),

I try with


'inline_edit' => '0',
'inline_edit' => 0,
'inline_edit' => false,

and always Inline edit is set to checked

Try this,

‘custom_fields’=>array (

	        //NIP
	        array(
	            'name' => 'amg_nip',
	            'vname' => 'LBL_NIP', //here changed
	            'type' => 'varchar',
	            'module' => 'Accounts',
	            'help' => '',
	            'comment' => '',
	            'default_value' => '',
	            'max_size' => 20,
	            'required' => false, 
	            'reportable' => true, 
	            'audited' => false, 
	            'importable' => true, 
	            'duplicate_merge' => false, 
	            'inline_edit' => '0',
	        ),
	),

I don’t know the answer but this is how I would try to find out:

Create the custom field in Studio, with inline edit turned ON.

Turn on auditing of file accesses:

https://pgorod.github.io/Audit-File-Accesses/

While watching for any changes, set the inline property to OFF in Studio. Record any changed files.

Do a quick Repair and Rebuild. Record any changed files.

Now examine what was changed in these files and do the same in your manual deployment.

No changes.

Sorry, what do you mean? Is the Audit working, can you see files being read, at least?

And then, Studio must change something! At least, if you see a change in behaviour in the “inline” function.

If any one got the solution for this !

Look like there is no option in the detailviewdef