Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the extension of a Android Studio project file?

What is the Android Studio equivalent of Solution file in (.sln) file in Visual Studio ? I created a project in Android studio and closed it. Now I am not sure which file should I open to reload it into Android studio.

like image 477
Prasad Nair Avatar asked Jan 03 '14 15:01

Prasad Nair


People also ask

What is the extension for a project file?

The standard file format for a project which uses the . mpp extension. Project 2010, Project 2013, and Project 2016 all use the same file format.

What is Android project files?

The android project contains different types of app modules, source code files, and resource files. We will explore all the folders and files in the android app. Manifests Folder. Java Folder. res (Resources) Folder.

What is Android Studio file?

Android Studio offers a few distinct types of module: Android app module. Provides a container for your app's source code, resource files, and app level settings such as the module-level build file and Android Manifest file. When you create a new project, the default module name is "app".

Where is the project file in Android Studio?

Android Studio stores the projects by default in the home folder of the user under AndroidStudioProjects. The main directory contains configuration files for Android Studio and the Gradle build files. The application relevant files are contained in the app folder.


2 Answers

Use the import project function on the build.gradle file in your project root (not the folder itself!) to open the project again in Android Studio.

like image 105
nhaarman Avatar answered Sep 21 '22 11:09

nhaarman


I think ".iml" is the extension for Android studio projects. ".project" is for Eclipse projects

like image 36
Aerilys Avatar answered Sep 24 '22 11:09

Aerilys