Skip to content

Commit 82d3d80

Browse files
author
TutorialsAndroid
committed
ADDED SUPPORT FOR OLDER VERSIONS ANDROID AND ADDED ABILITY TO HIDE CONFIRM BUTTON
1 parent 515fa21 commit 82d3d80

File tree

41 files changed

+86
-2001
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+86
-2001
lines changed
Binary file not shown.
900 Bytes
Binary file not shown.

.idea/caches/build_file_checksums.ser

0 Bytes
Binary file not shown.

.idea/libraries/Gradle__com_github_TutorialsAndroid_progressx_v4_0_19_aar.xml renamed to .idea/libraries/Gradle__com_github_TutorialsAndroid_progressx_v5_0_19_aar.xml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 21 additions & 1929 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![](https://github.com/TutorialsAndroid/KAlertDialog/blob/master/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png)
22

3-
Alert Dialog ![API](https://img.shields.io/badge/API-21%2B-brightgreen.svg?style=flat) [![Known Vulnerabilities](https://snyk.io/test/github/TutorialsAndroid/KAlertDialog/badge.svg?targetFile=library%2Fbuild.gradle)](https://snyk.io/test/github/TutorialsAndroid/KAlertDialog?targetFile=library%2Fbuild.gradle) [![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-KAlertDiaog-blue.svg?style=flat)](https://android-arsenal.com/details/1/7588) [![License](https://img.shields.io/badge/License-Apache%202.0-green.svg)](https://opensource.org/licenses/Apache-2.0)
3+
Alert Dialog ![API](https://img.shields.io/badge/API-15%2B-brightgreen.svg?style=flat) [![Known Vulnerabilities](https://snyk.io/test/github/TutorialsAndroid/KAlertDialog/badge.svg?targetFile=library%2Fbuild.gradle)](https://snyk.io/test/github/TutorialsAndroid/KAlertDialog?targetFile=library%2Fbuild.gradle) [![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-KAlertDiaog-blue.svg?style=flat)](https://android-arsenal.com/details/1/7588) [![License](https://img.shields.io/badge/License-Apache%202.0-green.svg)](https://opensource.org/licenses/Apache-2.0)
44
===================
55
AlertDialog for Android, a beautiful and material alert dialog to use in your android app.
66

@@ -40,7 +40,7 @@ Add it in your root build.gradle at the end of repositories:
4040
Step 2. Add the dependency
4141

4242
dependencies {
43-
implementation 'com.github.TutorialsAndroid:KAlertDialog:v10.0.19'
43+
implementation 'com.github.TutorialsAndroid:KAlertDialog:v11.0.19'
4444
}
4545

4646
## Usage

library/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ android {
77
compileSdkVersion 29
88

99
defaultConfig {
10-
minSdkVersion 21
10+
minSdkVersion 15
1111
targetSdkVersion 29
12-
versionCode 17
13-
versionName "10.0.19"
12+
versionCode 18
13+
versionName "11.0.19"
1414
}
1515

1616
compileOptions {
@@ -33,6 +33,6 @@ dependencies {
3333
//ANDROID SUPPORT LIBRARIES
3434
implementation 'androidx.appcompat:appcompat:1.1.0'
3535

36-
//KINDA PROGRESSX LIBRARY
37-
implementation 'com.github.TutorialsAndroid:progressx:v4.0.19'
36+
//TUTORIALS ANDROID LIBRARIES
37+
implementation 'com.github.TutorialsAndroid:progressx:v5.0.19'
3838
}

library/build/generated/source/buildConfig/debug/com/developer/kalert/BuildConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ public final class BuildConfig {
1313
public static final String APPLICATION_ID = "com.developer.kalert";
1414
public static final String BUILD_TYPE = "debug";
1515
public static final String FLAVOR = "";
16-
public static final int VERSION_CODE = 17;
17-
public static final String VERSION_NAME = "10.0.19";
16+
public static final int VERSION_CODE = 18;
17+
public static final String VERSION_NAME = "11.0.19";
1818
}

library/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.developer.kalert"
4-
android:versionCode="17"
5-
android:versionName="10.0.19" >
4+
android:versionCode="18"
5+
android:versionName="11.0.19" >
66

77
<uses-sdk
8-
android:minSdkVersion="21"
8+
android:minSdkVersion="15"
99
android:targetSdkVersion="29" />
1010

1111
<application />
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":17,"versionName":"10.0.19","enabled":true,"outputFile":"library-debug.aar","fullName":"debug","baseName":"debug","dirName":""},"path":"AndroidManifest.xml","properties":{"packageId":"com.developer.kalert","split":""}}]
1+
[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":18,"versionName":"11.0.19","enabled":true,"outputFile":"library-debug.aar","fullName":"debug","baseName":"debug","dirName":""},"path":"AndroidManifest.xml","properties":{"packageId":"com.developer.kalert","split":""}}]

0 commit comments

Comments
 (0)