mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-10 19:13:03 +02:00
Log activity intent
This commit is contained in:
@@ -61,7 +61,11 @@ abstract class ActivityBase extends AppCompatActivity implements SharedPreferenc
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
Log.i("Create " + this.getClass().getName() + " version=" + BuildConfig.VERSION_NAME);
|
||||
Log.logExtras(getIntent());
|
||||
Intent intent = getIntent();
|
||||
if (intent != null) {
|
||||
Log.i(intent.toString());
|
||||
Log.logBundle(intent.getExtras());
|
||||
}
|
||||
|
||||
this.contacts = hasPermission(Manifest.permission.READ_CONTACTS);
|
||||
|
||||
|
||||
@@ -66,8 +66,6 @@ public class ActivityCompose extends ActivityBilling implements FragmentManager.
|
||||
Intent.ACTION_SENDTO.equals(action) ||
|
||||
Intent.ACTION_SEND.equals(action) ||
|
||||
Intent.ACTION_SEND_MULTIPLE.equals(action)) {
|
||||
Log.i(intent.toString());
|
||||
Log.logExtras(intent);
|
||||
|
||||
args = new Bundle();
|
||||
args.putString("action", "new");
|
||||
|
||||
Reference in New Issue
Block a user