SCode Studio
  • What is SCode Studio?
  • Guides
    • Creating your first project
      • Empty
      • Android App
      • C++, C and C# console
      • Web development
      • React App
      • Markdown
      • Plain Text
      • Java and Koltin
      • Pyhton
    • Supported language
    • Termux
      • Installer[not available]
      • Run code
  • Fundamentals
    • Projects management
  • Learn more
    • Roadmap
  • Extras
    • Keyboard Shortcuts
Powered by GitBook
On this page
  • Create your android project
  • Project files
  • Project overview
  • How to build my app
  • How to install my app
  • Project Settings
  • Extra: [ SOON TO BE EXPLAIN WITH AAB COMPILER FEATURE ]
  • Import android studio project
  1. Guides
  2. Creating your first project

Android App

PreviousEmptyNextC++, C and C# console

Last updated 2 years ago

Create your android project

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

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.

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/

If you edit any files in the .tmp/ directory, your project may be corrupt.

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

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!

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

Learn more about Project files

here.
here.
Input your project name, this will not be the name of your app.
Fill up everything to start your project.