Skip to content

Commit

Permalink
Set default activity for example application
Browse files Browse the repository at this point in the history
  • Loading branch information
aforcier committed Apr 1, 2015
1 parent 23fd043 commit d16a6d5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions example/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@
android:theme="@style/AppTheme" >
<activity
android:name=".MainExampleActivity"
android:label="@string/title_activity_example"
android:exported="true">
android:label="@string/title_activity_example">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".EditorExampleActivity" >
Expand Down
4 changes: 2 additions & 2 deletions example/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<resources>
<string name="app_name">EditorExample</string>
<string name="title_activity_example">ExampleActivity</string>
<string name="app_name">Editor Example</string>
<string name="title_activity_example">Editor Example</string>
<string name="starting_legacy_editor">Starting legacy editor</string>
<string name="starting_new_editor">Starting new editor</string>

Expand Down

0 comments on commit d16a6d5

Please sign in to comment.