Skip to content

Commit 12458f0

Browse files
committed
updated main activity name to hello world activity
1 parent 4bace4a commit 12458f0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
android:roundIcon="@mipmap/ic_launcher_round"
99
android:supportsRtl="true"
1010
android:theme="@style/AppTheme">
11-
<activity android:name=".MainActivity">
11+
<activity android:name=".HelloWorldActivity">
1212
<intent-filter>
1313
<action android:name="android.intent.action.MAIN" />
1414
<category android:name="android.intent.category.LAUNCHER" />

app/src/main/java/com/ngmatt/weedmapsandroidcodechallenge/MainActivity.kt renamed to app/src/main/java/com/ngmatt/weedmapsandroidcodechallenge/HelloWorldActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import android.os.Bundle
66
/**
77
* Created by Matt Ng on 9/14/20
88
*/
9-
class MainActivity: Activity() {
9+
class HelloWorldActivity: Activity() {
1010

1111
override fun onCreate(savedInstanceState: Bundle?) {
1212
super.onCreate(savedInstanceState)

0 commit comments

Comments
 (0)