Skip to content

Commit d8f1eeb

Browse files
committed
Namespace migration
1 parent a1cdc91 commit d8f1eeb

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

.idea/inspectionProfiles/Project_Default.xml

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

app/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ android {
4343
excludes += '/META-INF/{AL2.0,LGPL2.1}'
4444
}
4545
}
46+
namespace 'com.popovanton0.heartswitch.demo'
4647
}
4748

4849
dependencies {

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.popovanton0.heartswitch.demo">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<application
65
android:allowBackup="true"
@@ -12,7 +11,6 @@
1211
<activity
1312
android:name=".MainActivity"
1413
android:exported="true"
15-
android:label="@string/app_name"
1614
android:theme="@style/Theme.HeartSwitch">
1715
<intent-filter>
1816
<action android:name="android.intent.action.MAIN" />

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ buildscript {
66
}
77

88
plugins {
9-
id 'com.android.application' version '7.3.0' apply false
10-
id 'com.android.library' version '7.3.0' apply false
9+
id 'com.android.application' version '7.3.1' apply false
10+
id 'com.android.library' version '7.3.1' apply false
1111
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
1212
id 'org.jetbrains.kotlinx.binary-compatibility-validator' version '0.12.1' apply false
1313
}

heart-switch/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ android {
3636
composeOptions {
3737
kotlinCompilerExtensionVersion compose_compiler_version
3838
}
39+
namespace 'com.popovanton0.heartswitch'
3940
}
4041

4142
dependencies {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest package="com.popovanton0.heartswitch" />
2+
<manifest />

0 commit comments

Comments
 (0)