File: README.md

package info (click to toggle)
android-platform-tools-base 2.2.2-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 113,928 kB
  • sloc: java: 696,396; xml: 45,920; cpp: 2,526; ansic: 1,432; sh: 508; lisp: 110; javascript: 108; makefile: 17
file content (22 lines) | stat: -rw-r--r-- 913 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Android Studio ProfilerApp Setup Instructions

### Environment Variables

###### MAVEL_URL
This env var is needed by the Gradle test infrastructure in anticipation that we will be running the app as part of Gradle integration tests. It can be added either in your ~/.bashrc (~/.bash_profile on Mac) or directly in the Android Studio run configuration in IntelliJ.

This can be pointed to the latest version of the artifacts under your source tree: {studio_master_dev}/prebuilts/tools/common/offline-m2/ 


### Dependencies

###### NDK
The Native Development Kit is required by the Memory component of the app to perform native allocations via JNI.
To setup NDK, follow the instructions here: http://developer.android.com/ndk/guides/setup.html

The NDK directory should be added to $PATH. Also, add the following line to "local.properties" inside the ProfilerApp project:

```sh
ndk.dir={YOUR_NDK_DIR_PATH}
```