-
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.
*Create ability to set Input Dialogue text. Prefill Input Dialogue with desired text. *Fixed that pesky bug of the last hint being saved and prefilled text being cleared. The culprit is EditText automatically saving old values. Set saveEnabled to false in XML solved the issue! Great work :) *Update BuildTools to v26.0.2. *Version bump to v1.7.
- Loading branch information
1 parent
99c4fdc
commit c247635
Showing
7 changed files
with
1,355 additions
and
1,313 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 26 | ||
buildToolsVersion "26.0.1" | ||
defaultConfig { | ||
applicationId "stream.customalertsample" | ||
minSdkVersion 15 | ||
targetSdkVersion 26 | ||
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" } | ||
} | ||
compile fileTree(include: ['*.jar'], dir: 'libs') | ||
compile project(':customalert') | ||
compile 'com.github.searchy2:CustomButton:1.2' | ||
|
||
compile 'com.android.support:appcompat-v7:26.0.2' | ||
compile 'com.android.support:design:26.0.2' | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdkVersion 26 | ||
buildToolsVersion "26.0.2" | ||
defaultConfig { | ||
applicationId "stream.customalertsample" | ||
minSdkVersion 15 | ||
targetSdkVersion 26 | ||
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" } | ||
} | ||
compile fileTree(include: ['*.jar'], dir: 'libs') | ||
compile project(':customalert') | ||
compile 'com.github.searchy2:CustomButton:1.3' | ||
|
||
compile 'com.android.support:appcompat-v7:26.0.2' | ||
compile 'com.android.support:design:26.0.2' | ||
} |
Oops, something went wrong.