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/build.gradle | |
parent | 6838e72ab0710a831e2b49b4cc173dbe34abfe28 (diff) |
Added navigation drawer
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle index 32ed464..765c72f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -24,8 +24,11 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" + implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" implementation 'com.android.support:appcompat-v7:27.1.0' + implementation 'com.android.support:support-v4:27.1.0' + implementation 'com.android.support:design:27.1.0' + implementation 'com.android.support.constraint:constraint-layout:1.0.2' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.1' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' |