



Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
Understanding and analyze the specific requirements, possibilities and challenges when developing for a mobile application context
Typology: Assignments
1 / 5
This page cannot be seen from the preview
Don't miss anything!
Student Name: Anshul UID: 20BCS Branch: BE-CSE Section: 20BCS_NTPP_DM_604/B Semester: 6th^ Date of Performance: 16-02- Subject Name: Mobile Application Development Lab Subject Code: 20CSP-
features and import sample code Extensive testing tools and frameworks Lint tools to catch performance, usability, version compatibility, and other problems
3. STEPS TO CREATE A “HELLO WORLD” APPLICATION: i) System Requirements: The open-source software needed to create Android applications is available online for download. The list of software that you will require before you begin developing Android applications is provided below. Java JDK5 or later version. Java Runtime Environment (JRE) 6 Android Studio ii) Program: package com.example.myapplication; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity{ @Override protected void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } }