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

Commit 49ef88f7 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

Merge branch '2822-u-emulator' into 'v1-u'

Fix emulator crash

See merge request e/os/BlissLauncher3!89
parents 31c11260 159e237d
Loading
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -184,7 +184,12 @@ class BlurWallpaperProvider(val context: Context) {
        mVibrancyPaint.colorFilter =
            ColorMatrixColorFilter(ColorMatrix().apply { setSaturation(1.25f) })

        val bitmap = Bitmap.createBitmap(wallpaper)
        val bitmap =
            Bitmap.createBitmap(
                wallpaper.width,
                wallpaper.height,
                wallpaper.config ?: Bitmap.Config.ARGB_8888
            )
        Canvas().apply {
            setBitmap(bitmap)
            drawBitmap(wallpaper, 0f, 0f, mVibrancyPaint)
+1 −8
Original line number Diff line number Diff line
@@ -151,13 +151,6 @@ android {
    }

    signingConfigs {
        debugConfig {
            storeFile file("$rootDir/keystore/testkey.jks")
            storePassword 'testkey'
            keyAlias 'testkey'
            keyPassword 'testkey'
        }

        platformConfig {
            storeFile file("$rootDir/keystore/platform.jks")
            storePassword 'platform'
@@ -186,7 +179,7 @@ android {
            minifyEnabled true
            shrinkResources true
            proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
            signingConfig = signingConfigs.debugConfig
            signingConfig = signingConfigs.platformConfig
        }

    }