Android Studio 应用徽标显示在调试apk中,但未显示在发布apk中|安卓

yacmzcpb  于 2023-01-02  发布在  Android
关注(0)|答案(1)|浏览(116)

所以我一直在android studio中为我的应用添加一个logo,我是通过右键点击mipmap文件夹-〉新建-〉图片资源-〉选择图片资源-〉下一步-〉完成来完成的,之后我的mipmap文件夹看起来像下面的图片:mipmap folder screenshot我可以清楚地看到,我添加的所有图像上都写了调试。

现在,每当我建立一个签名的APK,并选择发布模式的徽标不显示在应用程序中,但在调试模式下,它会。请帮助我,让我知道我如何才能有徽标显示在发布构建以及。

为了方便您参考,我添加了我的清单和build.gradle文件:
构建.gradle文件如下所示

plugins {
    id 'com.android.application'
    id 'org.jetbrains.kotlin.android'
}

android {
    namespace 'com.nomaanh.deliveryappcommissioncalculator'
    compileSdk 32

    defaultConfig {
        applicationId "com.nomaanh.deliveryappcommissioncalculator"
        minSdk 21
        targetSdk 32
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    kotlinOptions {
        jvmTarget = '1.8'
    }
    buildFeatures{
        viewBinding true
    }
}

dependencies {

    implementation 'androidx.core:core-ktx:1.7.0'
    implementation 'androidx.appcompat:appcompat:1.5.1'
    implementation 'com.google.android.material:material:1.7.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.4'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
}

我的AndroidManifest.xml文件看起来像这样:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <application
        android:allowBackup="true"
        android:dataExtractionRules="@xml/data_extraction_rules"
        android:fullBackupContent="@xml/backup_rules"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.DeliveryAppCommissionCalculator"
        tools:targetApi="31">
        <activity
            android:name=".GetMoneyActivity"
            android:exported="false">
            <meta-data
                android:name="android.app.lib_name"
                android:value="" />
        </activity>
        <activity
            android:name=".IncreaseMoneyActivity"
            android:exported="false">
            <meta-data
                android:name="android.app.lib_name"
                android:value="" />
        </activity>
        <activity
            android:name=".AdjustCommissionActivity"
            android:exported="false">
            <meta-data
                android:name="android.app.lib_name"
                android:value="" />
        </activity>
        <activity
            android:name=".MainActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

            <meta-data
                android:name="android.app.lib_name"
                android:value="" />
        </activity>
    </application>

</manifest>

我试着删除发行版ic_launcher. xml/ic_launcher_round. xml,但在构建应用程序时出现了一些链接错误,我还试着在文件本身中将前景属性更改为我的徽标,但也无济于事。

0yycz8jy

0yycz8jy1#

添加图像资产时,您可能错过了Android Studio中的资源目录选择步骤。以下是您需要在Android Studio中为调试和发布构建添加应用图标的方法:-
右键单击mipmap文件夹-〉新建-〉图像资源-〉选择图像资源-〉下一步-〉单击资源目录前面的下拉菜单-〉选择主菜单作为选项-〉完成

相关问题