Android studio 3 Running an app
Run Your App
This lesson teaches you to
Run on a real device
Set up your device as follows:
- Connect your device to your development machine with a USB cable. If you're developing on Windows, you might need to install the appropriate USB driver for your device.
- Enable USB debugging in the Developer options as follows. First, you must enable the developer options:
- Open the Settings app.
- (Only on Android 8.0 or higher) Select System.
- Scroll to the bottom and select About phone.
- Scroll to the bottom and tap Build number 7 times.
- Return to the previous screen to find Developer options near the bottom.
- In Android Studio, click the app module in the Project window and then select Run > Run (or click Run
in the toolbar). - In the Select Deployment Target window, select your device, and click OK.
To start developing, continue to the next lesson.
Run on an emulator
Run the app on an emulator as follows:
- In Android Studio, click the app module in the Project window and then select Run > Run (or click Run
in the toolbar). - In the Select Deployment Target window, click Create New Virtual Device.
- In the Select Hardware screen, select a phone device, such as Pixel, and then click Next.
- In the System Image screen, select the version with the highest API level. If you don't have that version installed, a Download link is shown, so click that and complete the download.
- Click Next.
- On the Android Virtual Device (AVD) screen, leave all the settings alone and click Finish.
- Back in the Select Deployment Target dialog, select the device you just created and click OK.
To start developing, continue to the next lesson.
Reference
https://developer.android.com/training/basics/firstapp/running-app.html
Comments
Post a Comment