Browse Source

Release 0.2.0. See README for What's New

Aidan Follestad 10 years ago
parent
commit
3c3a852d8f
4 changed files with 64 additions and 7 deletions
  1. 8 5
      README.md
  2. 2 2
      library/build.gradle
  3. 54 0
      sample/manifest-merger-release-report.txt
  4. BIN
      sample/sample.apk

+ 8 - 5
README.md

@@ -1,14 +1,17 @@
 # Material Dialogs
 # Material Dialogs
 
 
-This library was designed to solve a personal problem with my apps, I use AppCompat to use
-Material theming on versions of Android below Lollipop. However, despite being able to theme everything else,
-AppCompat doesn't theme AlertDialogs with Material design. This library allows you to use consistently Material
-themed dialogs on all versions of Android, along with specific customizations that make it easier to brand the dialog.
-
 The code you see below is also found in the sample project. You can download a APK of the sample here: https://github.com/afollestad/material-dialogs/blob/master/sample/sample.apk. The sample's also available on Google Play: https://play.google.com/store/apps/details?id=com.afollestad.materialdialogssample.
 The code you see below is also found in the sample project. You can download a APK of the sample here: https://github.com/afollestad/material-dialogs/blob/master/sample/sample.apk. The sample's also available on Google Play: https://play.google.com/store/apps/details?id=com.afollestad.materialdialogssample.
 
 
 ---
 ---
 
 
+# What's New
+
+* Version 0.2.0
+
+Action buttons must be explicitly shown by setting text to them. The buttons will be hidden in any dialog type if no text is passed for them. This also allows you to display neutral or negative action buttons individually without relying on positive text.
+
+---
+
 ### Gradle Dependency (jCenter)
 ### Gradle Dependency (jCenter)
 
 
 Easily reference the library in your Android projects using this dependency in your module's `build.gradle` file:
 Easily reference the library in your Android projects using this dependency in your module's `build.gradle` file:

+ 2 - 2
library/build.gradle

@@ -10,7 +10,7 @@ android {
         minSdkVersion 14
         minSdkVersion 14
         targetSdkVersion 21
         targetSdkVersion 21
         versionCode 1
         versionCode 1
-        versionName "0.1.2"
+        versionName "0.2.0"
     }
     }
     buildTypes {
     buildTypes {
         release {
         release {
@@ -33,7 +33,7 @@ publish {
     userOrg = 'drummer-aidan'
     userOrg = 'drummer-aidan'
     groupId = 'com.afollestad'
     groupId = 'com.afollestad'
     artifactId = 'material-dialogs'
     artifactId = 'material-dialogs'
-    version = '0.1.2'
+    version = '0.2.0'
     description = 'A library for implementing Material design styled dialogs across all versions of Android.'
     description = 'A library for implementing Material design styled dialogs across all versions of Android.'
     website = 'https://github.com/afollestad/material-dialogs'
     website = 'https://github.com/afollestad/material-dialogs'
     issueTracker = "${website}/issues"
     issueTracker = "${website}/issues"

+ 54 - 0
sample/manifest-merger-release-report.txt

@@ -0,0 +1,54 @@
+-- Merging decision tree log ---
+manifest
+ADDED from AndroidManifest.xml:1:1
+	package
+		ADDED from AndroidManifest.xml:2:5
+		INJECTED from AndroidManifest.xml:0:0
+		INJECTED from AndroidManifest.xml:0:0
+	android:versionName
+		INJECTED from AndroidManifest.xml:0:0
+		INJECTED from AndroidManifest.xml:0:0
+	xmlns:android
+		ADDED from AndroidManifest.xml:1:11
+	android:versionCode
+		INJECTED from AndroidManifest.xml:0:0
+		INJECTED from AndroidManifest.xml:0:0
+application
+ADDED from AndroidManifest.xml:4:5
+MERGED from com.android.support:appcompat-v7:21.0.0:16:5
+MERGED from com.android.support:support-v4:21.0.0:16:5
+	android:label
+		ADDED from AndroidManifest.xml:4:45
+	android:allowBackup
+		ADDED from AndroidManifest.xml:4:18
+	android:icon
+		ADDED from AndroidManifest.xml:5:9
+	android:theme
+		ADDED from AndroidManifest.xml:5:46
+activity#com.afollestad.materialdialogssample.MainActivity
+ADDED from AndroidManifest.xml:7:9
+	android:label
+		ADDED from AndroidManifest.xml:9:13
+	android:name
+		ADDED from AndroidManifest.xml:8:13
+intent-filter#android.intent.action.MAIN+android.intent.category.LAUNCHER
+ADDED from AndroidManifest.xml:10:13
+action#android.intent.action.MAIN
+ADDED from AndroidManifest.xml:11:17
+	android:name
+		ADDED from AndroidManifest.xml:11:25
+category#android.intent.category.LAUNCHER
+ADDED from AndroidManifest.xml:12:17
+	android:name
+		ADDED from AndroidManifest.xml:12:27
+uses-sdk
+INJECTED from AndroidManifest.xml:0:0 reason: use-sdk injection requested
+MERGED from MaterialDialogs:library:unspecified:8:5
+MERGED from com.android.support:appcompat-v7:21.0.0:15:5
+MERGED from com.android.support:support-v4:21.0.0:15:5
+	android:targetSdkVersion
+		INJECTED from AndroidManifest.xml:0:0
+		INJECTED from AndroidManifest.xml:0:0
+	android:minSdkVersion
+		INJECTED from AndroidManifest.xml:0:0
+		INJECTED from AndroidManifest.xml:0:0

BIN
sample/sample.apk