Created
April 28, 2014 00:27
-
-
Save emil10001/11358918 to your computer and use it in GitHub Desktop.
IntelliJ requires that an activity be specified as the default launch activity in AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<activity | |
android:name="com.google.android.glass.sample.timer.MenuActivity" | |
android:label="@string/app_name" | |
android:theme="@style/MenuTheme" | |
android:enabled="true" > | |
<intent-filter> | |
<action android:name="android.intent.action.MAIN"/> | |
<category android:name="android.intent.category.LAUNCHER"/> | |
</intent-filter> | |
</activity> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment