Why is my APK name generic?

前端 未结 2 731
感动是毒
感动是毒 2021-01-03 01:36

I\'m sure this is the dumb question of the day, but here it goes... I have an app that I need to distribute \"in house\" to be used by sales at a trade show. I successfull

2条回答
  •  南方客
    南方客 (楼主)
    2021-01-03 01:59

    May be it is too late to answer but i was having same problem to show my app name with the apk generated. i just update the defaultConfig in build.gradle(Module:app) as following

    defaultConfig {
            applicationId "com.test.testapp"
            minSdkVersion 19
            targetSdkVersion 26
            versionCode 1
            versionName "1.0"
            testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
            setProperty("archivesBaseName", "TestApp")
        }
    

    This works by modifying the archivesBaseName property and works for Gradle Version >= 2.0, last tested with gradle-3.3-all. Output would be TestApp-debug.apk instead of app-debug.apk

提交回复
热议问题