...
This commit is contained in:
+33
-1
@@ -9,7 +9,7 @@ plugins {
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "bums.lunatic.launcher"
|
||||
namespace = "bums.lunatic.launcher"
|
||||
compileSdk = 35
|
||||
|
||||
defaultConfig {
|
||||
@@ -115,6 +115,15 @@ android {
|
||||
doNotStrip("**/libaria2c.zip.so")
|
||||
doNotStrip("**/libffmpeg.zip.so")
|
||||
doNotStrip("**/libpython.zip.so")
|
||||
jniLibs {
|
||||
pickFirsts.add("lib/**/libc++_shared.so")
|
||||
pickFirsts.add("lib/**/libavcodec.so")
|
||||
pickFirsts.add("lib/**/libavfilter.so")
|
||||
pickFirsts.add("lib/**/libavformat.so")
|
||||
pickFirsts.add("lib/**/libavutil.so")
|
||||
pickFirsts.add("lib/**/libswresample.so")
|
||||
pickFirsts.add("lib/**/libswscale.so")
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -126,6 +135,7 @@ dependencies {
|
||||
"dir" to "libs",
|
||||
"include" to listOf("*.aar", "*.jar"),
|
||||
)))
|
||||
implementation(project(":gdrive"))
|
||||
val kotlinVersion: String? by extra
|
||||
val realmVersion = "2.0.0"
|
||||
implementation ("androidx.appcompat:appcompat:1.7.1")
|
||||
@@ -196,6 +206,28 @@ dependencies {
|
||||
// implementation ("me.everything:providers-core:1.0.1")
|
||||
// implementation ("androidx.window:window:1.0.0")
|
||||
// implementation("io.github.vaneproject:hanguleditor:1.0.0")
|
||||
|
||||
|
||||
// implementation ("androidx.concurrent:concurrent-listenablefuture-ktx:1.1.0")
|
||||
implementation ("com.google.guava:guava:33.2.1-jre")
|
||||
val camerax_version = "1.3.0" // 안정적인 최신 버전 사용
|
||||
|
||||
// CameraX 코어 라이브러리
|
||||
implementation("androidx.camera:camera-core:$camerax_version")
|
||||
implementation("androidx.camera:camera-camera2:$camerax_version")
|
||||
|
||||
// CameraX Lifecycle 라이브러리 (Fragment/Activity 생명주기 연결)
|
||||
implementation("androidx.camera:camera-lifecycle:$camerax_version")
|
||||
|
||||
// CameraX View 라이브러리 (PreviewView 등 UI 구성 요소)
|
||||
implementation("androidx.camera:camera-view:$camerax_version")
|
||||
|
||||
// (선택) CameraX 비디오 라이브러리
|
||||
implementation("androidx.camera:camera-video:$camerax_version")
|
||||
|
||||
// (선택) CameraX 확장 라이브러리 (보케, HDR 등)
|
||||
implementation("androidx.camera:camera-extensions:$camerax_version")
|
||||
|
||||
constraints {
|
||||
// ⚠️ 이 버전을 프로젝트 루트의 build.gradle.kts에 정의된 kotlinVersion 값과 정확히 일치시키세요.
|
||||
val targetKotlinVersion = "2.0.20"
|
||||
|
||||
Reference in New Issue
Block a user