Skip to content

Commit

Permalink
Merge pull request #127 from dmytrodanylyk/MoveNamespace
Browse files Browse the repository at this point in the history
Move namespace
  • Loading branch information
hannesa2 authored Oct 15, 2024
2 parents 4d53f4e + bbc1f2f commit ce016ba
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ plugins {
}

android {
namespace "com.dd.morphingbutton"
defaultConfig {
minSdkVersion 14
compileSdk 34
Expand Down
4 changes: 2 additions & 2 deletions library/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest package="com.dd.morphingbutton">
<manifest>

<application/>
<application />

</manifest>
1 change: 1 addition & 0 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
}

android {
namespace "com.dd.morphingbutton.sample"
defaultConfig {
applicationId "com.dd.morphingbutton.sample"
minSdkVersion 14
Expand Down
6 changes: 2 additions & 4 deletions sample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.dd.morphingbutton.sample">
xmlns:tools="http://schemas.android.com/tools">

<application
android:allowBackup="true"
Expand All @@ -11,8 +10,7 @@
tools:ignore="AllowBackup">
<activity
android:name=".MainActivity"
android:exported="true"
android:label="@string/app_name">
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down

0 comments on commit ce016ba

Please sign in to comment.