Skip to content
This repository was archived by the owner on Jan 22, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Application wasn't displaying in the Android app launcher (Activity n…
…ame 'JavaActivity' was displayed as the app name)
  • Loading branch information
bkfrcm committed Sep 14, 2015
commit b93dea6a75be34f09d62c37345790f5905e84898
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="16" />
android:targetSdkVersion="23" />

<application
android:allowBackup="true"
Expand All @@ -16,7 +16,7 @@
<activity
android:name="org.jetbrains.kotlin.gradle.androidsample.MainActivity"
android:label="@string/title_activity_main_activity1" >
<intent-filter>
<intent-filter android:label="@string/app_name">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<string name="app_name">AndroidSample</string>
<string name="app_name">Kotlin - AndroidSample</string>
<string name="action_settings">Settings</string>
<string name="hello_world">Hello world!</string>
<string name="title_activity_main_activity1">JavaActivity</string>
Expand Down