Finding the "name" of your Android application.
Posted
by fiXedd
on Stack Overflow
See other posts from Stack Overflow
or by fiXedd
Published on 2010-04-05T04:15:58Z
Indexed on
2010/04/05
4:23 UTC
Read the original article
Hit count: 236
android
Is there any way to (programatically) find out what your app's name is? I'm specifically talking about the android:label
property from the application tag in the manifest file:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.test" android:versionCode="1" android:versionName="1.0">
<application android:label="THIS THING HERE!" android:icon="@drawable/icon">
<!-- ... -->
</application>
</manifest>
© Stack Overflow or respective owner