How to get the build/version number of your Android application?

前端 未结 30 1814
刺人心
刺人心 2020-11-22 11:00

I need to figure out how to get or make a build number for my Android application. I need the build number to display in the UI.

Do I have to do something with

30条回答
  •  死守一世寂寞
    2020-11-22 11:21

    To get the app version or build code which is used to identify the apk by its version code. Version code is used to detect the actual build configuration at the time of update, publishing, etc.

    int versionCode = BuildConfig.VERSION_CODE;
    

    Version name is used to show the users or the developers of the development sequence. You can add any kind of version name as you want

    String versionName = BuildConfig.VERSION_NAME;
    

提交回复
热议问题