Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0c8780f7 authored by Yein Jo's avatar Yein Jo
Browse files

Include shader/texture assets in weather/graphics lib.

Shaders and textures are in the root module assets, moved to the
graphics module so that magicportrait can use it.

Test: mmm, gradle, test drawing WeatherEffects in MagicPortrait
Bug: 290939683
Flag: NA
Change-Id: I20da0c9f2f5d7b26e34233c6057f408237da1682
parent d457b76a
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -32,6 +32,9 @@ android_library {
        "graphics/src/**/*.java",
        "graphics/src/**/*.kt",
    ],
    asset_dirs: [
        "graphics/assets",
    ],
    javacflags: ["-Adagger.fastInit=enabled"],
    kotlincflags: ["-Xjvm-default=all"],
    plugins: ["dagger2-compiler"],
+0 −1
Original line number Diff line number Diff line
@@ -74,7 +74,6 @@ android {
            // TODO: Split out debug source.
            java.srcDirs = ["${rootDir}/src", "${rootDir}/debug/src"]
            res.srcDirs = ["${rootDir}/res", "${rootDir}/debug/res"]
            assets.srcDirs = ["${rootDir}/assets"]
            manifest.srcFile "AndroidManifest.xml"
        }

Loading