Android App

Create your android project

  1. Choose the android app template and input your project desire name.

Input your project name, this will not be the name of your app.

Android app templates are used to construct android applications and to enable android developer tools within the app.

2. Fill up everything and click save.

Fill up everything to start your project.

Create new project is a generator of the android essential files. Read more about app module here.

Project files

By default, Android Studio displays your project files in the Android view. This view does not reflect the actual file hierarchy on disk, but is organized by modules and file types to simplify navigation between key source files of your project, hiding certain files or directories that are not commonly used. Some of the structural changes compared to the structure on disk include the following:

Project overview

To see the actual file structure of the project including all files hidden from the Android view, select Project from the file tab at the top of the hamburger line window.

When you select Project view, you can see a lot more files and directories. The most important of which are the following:

local_libs/

Contains private libraries.

native_libs/

Contains private libraries like C++ etc.

.tmp/

SCode Studio android development files structure is similar to android studio it's self.

Learn more about Project files here.

How to build my app

  1. Click the run button on your right corner of the tab

2. Check the output console to see if your app has any bugs or errors; if so, solve them before building your app; otherwise, it will not work.

How to install my app

  1. To run your project click the key button on your code editor.

2. Click the sign apk on the dialog.

After the apk signing is finish the package manager will automatically appear to install your app.

3. Hit install.

Project Settings

Project settings used to change version name, version code, minimum SDK and maximum SDK.

Extra: [ SOON TO BE EXPLAIN WITH AAB COMPILER FEATURE ]

You can explore it how it's works, for now i leave it here soon to be explain.

Import android studio project

Create a new android project or choose existing project. when project is already loaded, go to home directory and click the folder icon to import your zip android project.

After importing the zip file contains of your android project, unzip the project and you good to go!

Last updated