Hi! Is it possible to make an autologon form other app using intent?
Something like in originial keepassdroid.
```
intent.setComponent(new ComponentName("com.android.keepass", "com.keepassdroid.PasswordActivity"));
intent.putExtra("fileName", dbinfo.database);
intent.putExtra("keyFile", dbinfo.keyfile_filename);
intent.putExtra("password", dbinfo.password);
intent.putExtra("launchImmediately", dbinfo.config != Settings.CONFIG_PASSWORD_ASK);
Toast.LENGTH_SHORT).show();
try {
startActivity(intent);
```
Comments: Hello Philipp, I was trying to revive NFC-Key, the intend does not work anymore, is looks like it is hit by the md5 stuff renaming like other actions (https://bugzilla.xamarin.com/show_bug.cgi?id=33617) Can you change the PasswordActivity intent to be kp2a.action.PasswordActivity as well ? best regards; JulienVdG
Something like in originial keepassdroid.
```
intent.setComponent(new ComponentName("com.android.keepass", "com.keepassdroid.PasswordActivity"));
intent.putExtra("fileName", dbinfo.database);
intent.putExtra("keyFile", dbinfo.keyfile_filename);
intent.putExtra("password", dbinfo.password);
intent.putExtra("launchImmediately", dbinfo.config != Settings.CONFIG_PASSWORD_ASK);
Toast.LENGTH_SHORT).show();
try {
startActivity(intent);
```
Comments: Hello Philipp, I was trying to revive NFC-Key, the intend does not work anymore, is looks like it is hit by the md5 stuff renaming like other actions (https://bugzilla.xamarin.com/show_bug.cgi?id=33617) Can you change the PasswordActivity intent to be kp2a.action.PasswordActivity as well ? best regards; JulienVdG