1
0
mirror of https://github.com/ggerganov/llama.cpp.git synced 2025-01-15 14:50:51 +01:00
llama.cpp/examples/llama.android/settings.gradle.kts
Elton Kola 9791f40258
android : module ()
* move ndk code to a new library

* add gradle file
2024-05-25 11:11:33 +03:00

19 lines
349 B
Plaintext

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "LlamaAndroid"
include(":app")
include(":llama")