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.
This commit is contained in:
Mathis Pruvot
2026-05-28 11:50:19 +00:00
parent 84809378d1
commit 9b90e6a4a1
7 changed files with 744 additions and 2 deletions

View File

@@ -0,0 +1,27 @@
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")
}