Skip to content

Commit

Permalink
Update BlurView v1.5.0
Browse files Browse the repository at this point in the history
*Update BlurView to v1.5.0 to be compatible with AndroidX.
*Update Gradle v3.4.0.
  • Loading branch information
rayliverified committed Apr 18, 2019
1 parent 788218c commit 0ebe947
Show file tree
Hide file tree
Showing 6 changed files with 448 additions and 446 deletions.
64 changes: 32 additions & 32 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
applicationId "stream.customalertsample"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
vectorDrawables.useSupportLibrary true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
repositories {
maven { url 'https://jitpack.io' }
maven { url "https://maven.google.com" }
}
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation project(':customalert')
implementation 'com.github.searchy2:CustomButton:1.8.2'

implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.cardview:cardview:1.0.0'
apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
applicationId "stream.customalertsample"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
vectorDrawables.useSupportLibrary true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
repositories {
maven { url 'https://jitpack.io' }
maven { url "https://maven.google.com" }
}
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation project(':customalert')
implementation 'com.github.searchy2:CustomButton:1.9.0'

implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.cardview:cardview:1.0.0'
}
Loading

0 comments on commit 0ebe947

Please sign in to comment.