Files
lively/modules/wallpaper-android/android/build.gradle.kts
Mathis Pruvot 9b90e6a4a1 fix: include native module sources in git tracking
Fix .gitignore to only exclude root android/ and ios/
(Expo prebuild output) while keeping modules/ native code.
Add Android WallpaperService Kotlin sources, GLSL shaders,
manifest, and Gradle config.
2026-05-28 11:50:19 +00:00

28 lines
471 B
Kotlin

plugins {
id("com.android.library")
id("org.jetbrains.kotlin.android")
}
android {
namespace = "com.lively.wallpaper"
compileSdk = 35
defaultConfig {
minSdk = 24
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
}
dependencies {
implementation(project(":expo-modules-core"))
implementation("org.jetbrains.kotlin:kotlin-stdlib")
}