Skip to content

Commit e27e715

Browse files
committed
[#423] Remove build warnings when generating new project
1 parent 8450038 commit e27e715

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

template-compose/domain/src/main/java/co/nimblehq/template/compose/domain/repositories/AppPreferencesRepository.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ interface AppPreferencesRepository {
66

77
fun getAppPreference(): Flow<Boolean>
88

9-
suspend fun updateAppPreference(appPreferencesValue: Boolean)
9+
suspend fun updateAppPreference(appPreferenceValue: Boolean)
1010
}

template-xml/app/build.gradle.kts

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ plugins {
1313
val keystoreProperties = rootDir.loadGradleProperties("signing.properties")
1414

1515
android {
16+
namespace = "co.nimblehq.template.xml"
17+
1618
signingConfigs {
1719
create(BuildType.RELEASE) {
1820
// Remember to edit signing.properties to have the correct info for release build.

template-xml/app/src/debug/AndroidManifest.xml

+1-2
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="co.nimblehq.template.xml">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<!--For Chucker in debug build only-->
65
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />

template-xml/app/src/main/AndroidManifest.xml

+1-2
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="co.nimblehq.template.xml">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<uses-permission android:name="android.permission.INTERNET" />
65

template-xml/data/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ plugins {
55
}
66

77
android {
8+
namespace = "co.nimblehq.template.xml.data"
89
compileSdk = Versions.ANDROID_COMPILE_SDK_VERSION
910
defaultConfig {
1011
minSdk = Versions.ANDROID_MIN_SDK_VERSION
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest package="co.nimblehq.template.xml.data" />
2+
<manifest />

0 commit comments

Comments
 (0)