Skip to content

Android Application Testing

netbiosX edited this page Jan 11, 2017 · 6 revisions

Manifest File Review

Ensure that the debuggable tag is set to false.

<application
android:debuggable="false"
</application>

The allowBackup attributes allows users to copy data off the application. The application should pre

<application
android:allowBackup="true"
</application>
```

# Certificate Pinning
TODO
Clone this wiki locally