Skip to content

Commit

Permalink
fix app name
Browse files Browse the repository at this point in the history
  • Loading branch information
cmzf committed Jan 19, 2020
1 parent 2fcc6b9 commit 0d4ea02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/activity_name">
android:configChanges="keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public class MainActivity extends AppCompatActivity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setTitle(R.string.activity_name);

Global.setMainActivity(this);
Global.setMainApplication(this.getApplication());
Expand Down

0 comments on commit 0d4ea02

Please sign in to comment.