Buddhism/app/src/main/AndroidManifest.xml
Gabriel Tofvesson bebc6ebca0 My first commit
2016-02-24 20:53:47 +01:00

27 lines
935 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.gabriel.buddhism">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".MainActivity$SettingsDialogue"
android:label="Settings"
android:theme="@style/AlertDialog.AppCompat" />
</application>
</manifest>