Skip to content

Commit

Permalink
Version 4.3.0
Browse files Browse the repository at this point in the history
Migrate from AndroidManifest package attribute to namespace DSL.
  • Loading branch information
pranavpandey committed Jun 16, 2022
1 parent 87a85e2 commit 7d2c3dd
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 11 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.2.1'
implementation 'com.pranavpandey.android:dynamic-dialogs:4.3.0'
// 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.2.1'
mavenVersionCode = 31
sampleVersionCode = 32
mavenVersion = '4.3.0'
mavenVersionCode = 32
sampleVersionCode = 33

developerId = 'pranavpandey'
developerName = 'Pranav Pandey'
Expand Down
1 change: 1 addition & 0 deletions dynamic-dialogs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ apply plugin: 'com.android.library'
android {
compileSdkVersion versions.compileSdk
buildToolsVersion versions.buildTools
namespace 'com.pranavpandey.android.dynamic.dialogs'

defaultConfig {
minSdkVersion versions.minSdk
Expand Down
6 changes: 1 addition & 5 deletions dynamic-dialogs/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,4 @@
limitations under the License.
-->

<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.pranavpandey.android.dynamic.dialogs">

</manifest>
<manifest />
1 change: 1 addition & 0 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ apply plugin: 'kotlin-android'
android {
compileSdkVersion versions.compileSdk
buildToolsVersion versions.buildTools
namespace 'com.pranavpandey.android.dynamic.dialogs.sample'

defaultConfig {
applicationId "com.pranavpandey.android.dynamic.dialogs.sample"
Expand Down
3 changes: 1 addition & 2 deletions sample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
-->

<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.pranavpandey.android.dynamic.dialogs.sample">
xmlns:android="http://schemas.android.com/apk/res/android">

<queries>
<intent>
Expand Down

0 comments on commit 7d2c3dd

Please sign in to comment.