Skip to content

Commit

Permalink
Merge pull request #27 from Semper-Viventem/release
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
Semper-Viventem authored May 14, 2019
2 parents 4d62fea + 5598352 commit 33c0fe1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This library makes it easy to implement a [Backdrop](https://material.io/design/
**JCenter (Recommended):**
```groovy
dependencies {
implementation 'ru.semper-viventem.backdrop:backdrop:0.1.6'
implementation 'ru.semper-viventem.backdrop:backdrop:0.1.7'
}
```

Expand All @@ -29,7 +29,7 @@ repositories {
}
dependencies {
implementation 'com.github.Semper-Viventem:BackdropView:0.1.6'
implementation 'com.github.Semper-Viventem:BackdropView:0.1.7'
}
```

Expand Down
7 changes: 4 additions & 3 deletions backdrop/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ext {
siteUrl = 'https://github.com/Semper-Viventem/BackdropView'
gitUrl = 'https://github.com/Semper-Viventem/BackdropView'

libraryVersion = '0.1.6'
libraryVersion = '0.1.7'

developerId = 'semper-viventem'
developerName = 'constantine'
Expand All @@ -40,7 +40,7 @@ android {
compileSdkVersion 28

defaultConfig {
minSdkVersion 21
minSdkVersion 16
targetSdkVersion 28
}

Expand All @@ -64,7 +64,8 @@ dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

// Android X
implementation "androidx.appcompat:appcompat:1.1.0-alpha02"
implementation "androidx.appcompat:appcompat:1.1.0-alpha05"
implementation "com.google.android.material:material:1.1.0-alpha06"

// Kotlin
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
Expand Down
6 changes: 3 additions & 3 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')

// Android X
implementation "androidx.appcompat:appcompat:1.1.0-alpha02"
implementation "androidx.appcompat:appcompat:1.1.0-alpha05"
implementation "androidx.constraintlayout:constraintlayout:1.1.3"
implementation "com.google.android.material:material:1.1.0-alpha03"
implementation "com.google.android.material:material:1.1.0-alpha06"

// Kotlin
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

// Images
implementation 'com.github.bumptech.glide:glide:4.8.0'
implementation 'com.github.bumptech.glide:glide:4.9.0'

implementation project(':backdrop')
}
10 changes: 6 additions & 4 deletions sample/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/backDrop"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/backDrop"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimary"
Expand All @@ -13,7 +13,8 @@
android:id="@+id/backLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
android:orientation="vertical"
app:elevation="0dp">

<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
Expand All @@ -25,9 +26,10 @@
android:id="@+id/navigationView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="@dimen/small_gap"
android:paddingEnd="@dimen/small_gap"
android:background="@android:color/transparent"
android:paddingEnd="@dimen/small_gap"
android:paddingStart="@dimen/small_gap"
app:elevation="0dp"
app:itemBackground="@drawable/bg_menu_item"
app:itemTextColor="@color/white"
app:menu="@menu/main_menu"/>
Expand Down

0 comments on commit 33c0fe1

Please sign in to comment.