cross-posted from: https://lemm.ee/post/46066494

I followed the recommended processes for adding images to my app, and it is being displayed correctly on the layout preview, but not at all on the app. I have vector assets, webp, png images, but none are being displayed.

The project is too big to put here in its entirety, but please ask for any snippets that could help you solve the issue. I’ve tried searching the web and asking LLMs and neither could help, so please help me, fellow humans.

  • JackGreenEarthOP
    link
    fedilink
    English
    arrow-up
    2
    ·
    5 hours ago

    I’ve tested it on 3 real phones, I imported the vector graphics from the google database of default vector graphics and followed the android studio docs page on how to import images, I used the srcCompat attribute and added vectordrawable to the build.gradle.kts.

    How do I share my project settings? Is that a file?

      • JackGreenEarthOP
        link
        fedilink
        English
        arrow-up
        2
        ·
        3 hours ago
        Tap for Kotlin script

        plugins { alias(libs.plugins.android.application) alias(libs.plugins.kotlin.android) }

        android { namespace = “org.jackgreenearth.materialmusic” compileSdk = 35

        defaultConfig {
            applicationId = "org.jackgreenearth.materialmusic"
            minSdk = 30
            targetSdk = 35
            versionCode = 1
            versionName = "1.0"
        
            testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
        }
        
        buildTypes {
            release {
                isMinifyEnabled = false
                proguardFiles(
                    getDefaultProguardFile("proguard-android-optimize.txt"),
                    "proguard-rules.pro"
                )
            }
        }
        compileOptions {
            sourceCompatibility = JavaVersion.VERSION_17
            targetCompatibility = JavaVersion.VERSION_17
        }
        kotlinOptions {
            jvmTarget = "1.8"
        }
        buildFeatures {
            viewBinding = true
        }
        

        }

        dependencies {

        implementation(libs.androidx.core.ktx)
        implementation(libs.androidx.appcompat)
        implementation(libs.material)
        implementation(libs.androidx.constraintlayout)
        implementation(libs.androidx.navigation.fragment.ktx)
        implementation(libs.androidx.navigation.ui.ktx)
        testImplementation(libs.junit)
        androidTestImplementation(libs.androidx.junit)
        androidTestImplementation(libs.androidx.espresso.core)
        implementation(libs.androidx.vectordrawable)
        implementation(libs.androidx.vectordrawable.animated)
        

        }