Skip to content

Commit 629daa8

Browse files
authored
Merge pull request #267 from YAPP-Github/BOOK-505-fix/#266
fix: release 빌드 문제 해결
2 parents 70e0774 + d24c3dc commit 629daa8

5 files changed

Lines changed: 5 additions & 6 deletions

File tree

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@
8585

8686
<service
8787
android:name=".ReedFirebaseMessagingService"
88-
android:exported="false">
88+
android:exported="false"
89+
tools:ignore="Instantiatable">
8990
<intent-filter>
9091
<action android:name="com.google.firebase.MESSAGING_EVENT" />
9192
</intent-filter>

build-logic/src/main/kotlin/AndroidFeatureConventionPlugin.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import com.google.devtools.ksp.gradle.KspExtension
32
import com.ninecraft.booket.convention.api
43
import com.ninecraft.booket.convention.applyPlugins

build-logic/src/main/kotlin/AndroidFirebaseConventionPlugin.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import com.ninecraft.booket.convention.Plugins
32
import com.ninecraft.booket.convention.applyPlugins
43
import com.ninecraft.booket.convention.implementation

core/datastore/impl/src/main/kotlin/com/ninecraft/booket/core/datastore/impl/datasource/DefaultLoginMethodDataSource.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import kotlinx.coroutines.flow.map
1717
@SingleIn(DataScope::class)
1818
@Inject
1919
class DefaultLoginMethodDataSource(
20-
@LoginMethodDataStore private val dataStore: DataStore<Preferences>,
20+
@param:LoginMethodDataStore private val dataStore: DataStore<Preferences>,
2121
) : LoginMethodDataSource {
2222
override val recentLoginMethod: Flow<LoginMethod> = dataStore.data
2323
.handleIOException()

core/datastore/impl/src/main/kotlin/com/ninecraft/booket/core/datastore/impl/datasource/DefaultTokenDataSource.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import com.ninecraft.booket.core.datastore.api.datasource.TokenDataSource
88
import com.ninecraft.booket.core.datastore.impl.di.TokenDataStore
99
import com.ninecraft.booket.core.datastore.impl.security.CryptoManager
1010
import com.ninecraft.booket.core.datastore.impl.util.handleIOException
11+
import com.ninecraft.booket.core.di.DataScope
1112
import com.orhanobut.logger.Logger
1213
import dev.zacsweers.metro.Inject
13-
import com.ninecraft.booket.core.di.DataScope
1414
import dev.zacsweers.metro.SingleIn
1515
import kotlinx.coroutines.flow.Flow
1616
import kotlinx.coroutines.flow.first
@@ -20,7 +20,7 @@ import java.security.GeneralSecurityException
2020
@SingleIn(DataScope::class)
2121
@Inject
2222
class DefaultTokenDataSource(
23-
@TokenDataStore private val dataStore: DataStore<Preferences>,
23+
@param:TokenDataStore private val dataStore: DataStore<Preferences>,
2424
private val cryptoManager: CryptoManager,
2525
) : TokenDataSource {
2626
override val accessToken: Flow<String> = decryptStringFlow(ACCESS_TOKEN)

0 commit comments

Comments
 (0)