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 cd610c7 commit 72fe862
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,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-engine:4.2.0'
implementation 'com.pranavpandey.android:dynamic-engine:4.3.0'
// For legacy projects.
implementation 'com.pranavpandey.android:dynamic-engine:1.3.0'
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ ext {
mavenDir = 'com/pranavpandey/android'
mavenArtifactId = 'dynamic-engine'
mavenInceptionYear = '2017'
mavenVersion = '4.2.0'
mavenVersionCode = 28
mavenVersion = '4.3.0'
mavenVersionCode = 29

developerId = 'pranavpandey'
developerName = 'Pranav Pandey'
Expand Down
1 change: 1 addition & 0 deletions dynamic-engine/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.engine'

defaultConfig {
minSdkVersion versions.minSdk
Expand Down
3 changes: 1 addition & 2 deletions dynamic-engine/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@

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

<!-- Permission used by the foreground app monitor. -->
<uses-permission android:name="android.permission.GET_TASKS"
Expand Down

0 comments on commit 72fe862

Please sign in to comment.