android - App name not shown -
i've set name of app this
<application android:allowbackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsrtl="true" android:theme="@style/apptheme"> <activity android:name=".mainactivity" android:label="@string/title_activity_main" android:theme="@style/apptheme.noactionbar"> <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> </application>
and value off string it's correct name app shown name of main activity...mainactivity instead of app name
see line in activity
declaration
remove line if don't want
android:label="@string/title_activity_main"
Comments
Post a Comment