Skip to content

Commit

Permalink
Version 4.3.1
Browse files Browse the repository at this point in the history
Disable startup initializer for sample to fix verification error.
  • Loading branch information
pranavpandey committed Dec 20, 2022
1 parent 8d7a47b commit 5bc09b2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ It can be installed by adding the following dependency to your `build.gradle` fi
```groovy
dependencies {
// For AndroidX enabled projects.
implementation 'com.pranavpandey.android:dynamic-dialogs:4.3.0'
implementation 'com.pranavpandey.android:dynamic-dialogs:4.3.1'
// For legacy projects.
implementation 'com.pranavpandey.android:dynamic-dialogs:1.3.0'
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ ext {
mavenGroup = 'com.pranavpandey.android'
mavenDir = 'com/pranavpandey/android'
mavenInceptionYear = '2017'
mavenVersion = '4.3.0'
mavenVersionCode = 32
sampleVersionCode = 33
mavenVersion = '4.3.1'
mavenVersionCode = 33
sampleVersionCode = 34

developerId = 'pranavpandey'
developerName = 'Pranav Pandey'
Expand Down
10 changes: 9 additions & 1 deletion sample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
-->

<manifest
xmlns:android="http://schemas.android.com/apk/res/android">
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<queries>
<intent>
Expand Down Expand Up @@ -45,6 +46,13 @@
</intent-filter>
</activity>

<!-- Disable startup initializer to fix verification error. -->
<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="${applicationId}.androidx-startup"
tools:node="remove"
tools:ignore="MissingClass" />

</application>

</manifest>

0 comments on commit 5bc09b2

Please sign in to comment.