Skip to content

Commit

Permalink
Input Dialogue Creation #5
Browse files Browse the repository at this point in the history
*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
rayliverified committed Oct 18, 2017
1 parent 99c4fdc commit c247635
Show file tree
Hide file tree
Showing 7 changed files with 1,355 additions and 1,313 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 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'
}
Loading

0 comments on commit c247635

Please sign in to comment.