Skip to content

Commit 8284635

Browse files
committed
improved wording after review
1 parent d64e20e commit 8284635

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

content/learning-paths/mobile-graphics-and-gaming/android-ai-chat-lib/add-ai-chat-lib-2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ Finally, there will be a banner at the top of these settings files saying the "G
2828
## Adjust the Manifest
2929
We need to adjust the `AndroidManifest.xml` file, which is in `app\src\main`.
3030

31-
Most of the file is an xml tag `<application ...>`. Add in among the other similar looking options in the tag:
31+
Most of the file is an xml tag `<application ...>`. Within the tag are several `android:` options. Add in an additional flag to load the needed llama.cpp native libraries:
3232
```xml
3333
<application
34+
...
3435
android:extractNativeLibs="true"
3536
... >
3637
```
37-
This enables the app to load the needed llama.cpp native libraries.

0 commit comments

Comments
 (0)