-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
*Update BlurView to v1.5.0 to be compatible with AndroidX. *Update Gradle v3.4.0.
- Loading branch information
1 parent
788218c
commit 0ebe947
Showing
6 changed files
with
448 additions
and
446 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
} |
Oops, something went wrong.