diff options
author | Marcin Zelent <zelent.marcin@gmail.com> | 2018-03-28 18:42:15 +0200 |
---|---|---|
committer | Marcin Zelent <zelent.marcin@gmail.com> | 2018-03-28 18:42:15 +0200 |
commit | 34914e01dd3a6cca867ed27ddeaa067772834707 (patch) | |
tree | 66fd1e2217d768ccc88e62d175bdd5389b881333 /app/src/main/AndroidManifest.xml | |
parent | 6838e72ab0710a831e2b49b4cc173dbe34abfe28 (diff) |
Added navigation drawer
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index e61cd42..a21504c 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,4 +1,6 @@ +<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" package="org.marcinzelent.liberavem"> <application @@ -7,5 +9,19 @@ android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" - android:theme="@style/AppTheme" /> -</manifest> + android:theme="@style/AppTheme" + android:fullBackupContent="" + tools:ignore="GoogleAppIndexingWarning"> + <activity + android:name=".MainActivity" + android:label="@string/title_activity_main" + android:theme="@style/AppTheme.NoActionBar"> + <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 |