---
title: "Where will you declare your activity so the system can access it?"  
description: "Where will you declare your activity so the system can access it?"  
author: "Anonymous User"  
published: 2015-05-28  
updated: 2020-09-24  
canonical: https://www.mindstick.com/interview/2585/where-will-you-declare-your-activity-so-the-system-can-access-it  
category: "android"  
tags: ["android"]  
reading_time: 1 minute  

---

# Where will you declare your activity so the system can access it?

Activity is to be declared in the manifest file. For example:

```
        <manifest></manifest>         <application></application>         <activity android:name=".MyTestActivity"></activity>         ...         ...
```

## Answers

### Answer by Anonymous User

Activity is to be declared in the manifest file. For example:

```
        <manifest></manifest>         <application></application>         <activity android:name=".MyTestActivity"></activity>         ...         ...
```


---

Original Source: https://www.mindstick.com/interview/2585/where-will-you-declare-your-activity-so-the-system-can-access-it

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
