diff options
author | Marvin Borner | 2018-05-19 20:11:35 +0200 |
---|---|---|
committer | Marvin Borner | 2018-05-19 20:11:35 +0200 |
commit | 7cd9f3cf3a86edc8425a2775d59cab6ff98d9dab (patch) | |
tree | 71d46b15d0b33171e4e36d755cfc18058d7ae940 /app/src/main/AndroidManifest.xml |
Initial design and functionality
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..d2c5f0a --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="me.marvinborner.myapplication"> + + <application + android:allowBackup="true" + android:icon="@mipmap/ic_launcher" + android:label="@string/app_name" + android:roundIcon="@mipmap/ic_launcher_round" + android:supportsRtl="true" + android:theme="@style/AppTheme"> + <activity android:name=".MainActivity"> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> + </application> + +</manifest>
\ No newline at end of file |