mirror of
https://github.com/logos-messaging/nim-ffi.git
synced 2026-06-20 16:29:31 +00:00
24 lines
600 B
Plaintext
24 lines
600 B
Plaintext
|
|
// Standalone settings so this directory builds as its own library module.
|
||
|
|
// To use it from an existing app instead, drop the `android/` directory in as a
|
||
|
|
// module and add `include(":mytimer")` to your project's settings.
|
||
|
|
pluginManagement {
|
||
|
|
repositories {
|
||
|
|
google()
|
||
|
|
mavenCentral()
|
||
|
|
gradlePluginPortal()
|
||
|
|
}
|
||
|
|
plugins {
|
||
|
|
id("com.android.library") version "8.5.2"
|
||
|
|
id("org.jetbrains.kotlin.android") version "1.9.24"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencyResolutionManagement {
|
||
|
|
repositories {
|
||
|
|
google()
|
||
|
|
mavenCentral()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
rootProject.name = "mytimer"
|