File tree 11 files changed +15
-13
lines changed
domain/src/main/java/co/nimblehq/template/compose/domain/repository
11 files changed +15
-13
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ val getVersionCode: () -> Int = {
19
19
}
20
20
21
21
android {
22
+ namespace = " co.nimblehq.template.compose"
23
+
22
24
signingConfigs {
23
25
create(BuildType .RELEASE ) {
24
26
// Remember to edit signing.properties to have the correct info for release build.
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
- package =" co.nimblehq.template.compose" >
2
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
4
3
5
4
<!-- For Chucker in debug build only-->
6
5
<uses-permission android : name =" android.permission.POST_NOTIFICATIONS" />
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
- package =" co.nimblehq.template.compose" >
2
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
4
3
5
4
<uses-permission android : name =" android.permission.INTERNET" />
6
5
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ plugins {
6
6
}
7
7
8
8
android {
9
+ namespace = " co.nimblehq.template.compose.data"
9
10
compileSdk = Versions .ANDROID_COMPILE_SDK_VERSION
10
11
defaultConfig {
11
12
minSdk = Versions .ANDROID_MIN_SDK_VERSION
@@ -36,8 +37,8 @@ android {
36
37
jvmTarget = JavaVersion .VERSION_11 .toString()
37
38
}
38
39
39
- lintOptions {
40
- isCheckDependencies = true
40
+ lint {
41
+ checkDependencies = true
41
42
xmlReport = true
42
43
xmlOutput = file(" build/reports/lint/lint-result.xml" )
43
44
}
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
- <manifest package = " co.nimblehq.template.compose.data " />
2
+ <manifest />
Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ interface AppPreferencesRepository {
6
6
7
7
fun getAppPreference (): Flow <Boolean >
8
8
9
- suspend fun updateAppPreference (appPreferencesValue : Boolean )
9
+ suspend fun updateAppPreference (appPreferenceValue : Boolean )
10
10
}
Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ plugins {
13
13
val keystoreProperties = rootDir.loadGradleProperties(" signing.properties" )
14
14
15
15
android {
16
+ namespace = " co.nimblehq.template.xml"
17
+
16
18
signingConfigs {
17
19
create(BuildType .RELEASE ) {
18
20
// Remember to edit signing.properties to have the correct info for release build.
Original file line number Diff line number Diff line change 1
1
<?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" >
4
3
5
4
<!-- For Chucker in debug build only-->
6
5
<uses-permission android : name =" android.permission.POST_NOTIFICATIONS" />
Original file line number Diff line number Diff line change 1
1
<?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" >
4
3
5
4
<uses-permission android : name =" android.permission.INTERNET" />
6
5
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ plugins {
5
5
}
6
6
7
7
android {
8
+ namespace = " co.nimblehq.template.xml.data"
8
9
compileSdk = Versions .ANDROID_COMPILE_SDK_VERSION
9
10
defaultConfig {
10
11
minSdk = Versions .ANDROID_MIN_SDK_VERSION
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
- <manifest package = " co.nimblehq.template.xml.data " />
2
+ <manifest />
You can’t perform that action at this time.
0 commit comments