Notice
Recent Posts
Recent Comments
Link
ยซ   2025/04   ยป
์ผ ์›” ํ™” ์ˆ˜ ๋ชฉ ๊ธˆ ํ† 
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Tags
more
Archives
Today
Total
๊ด€๋ฆฌ ๋ฉ”๋‰ด

๐ŸŒฑ dreaming DiNO

[Android] release ๋นŒ๋“œ์‹œ, bundleReleaseLocalLintAar FAILED ๋ณธ๋ฌธ

Android/Android Studio

[Android] release ๋นŒ๋“œ์‹œ, bundleReleaseLocalLintAar FAILED

MK_____ 2023. 6. 27. 15:52
์˜ค๋ฅ˜ ๋ฐœ์ƒ

> Task :face:bundleReleaseLocalLintAar FAILED
Execution failed for task ':face:bundleReleaseLocalLintAar'.
> Direct local .aar file dependencies are not supported when building an AAR. The resulting AAR would be broken because the classes and Android resources from any local .aar file dependencies would not be packaged in the resulting AAR. Previous versions of the Android Gradle Plugin produce broken AARs in this case too (despite not throwing this error). The following direct local .aar file dependencies of the :face project caused this error: 

 

 

์˜ค๋ฅ˜ ํ•ด๊ฒฐ

build.gradle (:app)

android {
   ...
    signingConfigs {
        lintOptions {
            checkReleaseBuilds false
        }
        ...
    }
}