Skip to content

Commit

Permalink
Added documentation for Android option Extract Native Libs (#441)
Browse files Browse the repository at this point in the history
* Update project-settings.md

* Update project-settings.md
  • Loading branch information
britzl authored May 29, 2024
1 parent 130c039 commit edbe21c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/en/manuals/project-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,10 @@ Specifies which method to use to get keyboard input on Android devices. Valid op
If set, hides the navigation and status bars and lets your app capture all touch events on the screen.

#### Debuggable
Whether or not the application can be debugged using tools such as [GAPID](https://github.com/google/gapid) or [Android Studio](https://developer.android.com/studio/profile/android-profiler). This will set the `android:debuggable` flag in the Android manifest.
Whether or not the application can be debugged using tools such as [GAPID](https://github.com/google/gapid) or [Android Studio](https://developer.android.com/studio/profile/android-profiler). This will set the `android:debuggable` flag in the Android manifest ([official documentation](https://developer.android.com/guide/topics/manifest/application-element#debug)).

#### Extract Native Libs
Specifies whether the package installer extracts native libraries from the APK to the file system. If set to `false`, your native libraries are stored uncompressed in the APK. Although your APK might be larger, your application loads faster because the libraries load directly from the APK at runtime. This will set the `android:extractNativeLibs` flag in the Android Manifest ([official documentation](https://developer.android.com/guide/topics/manifest/application-element#extractNativeLibs)). `true` by default.

---

Expand Down

0 comments on commit edbe21c

Please sign in to comment.