mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 23:27:04 +05:30
feat: init store module
This commit is contained in:
parent
6ca500066f
commit
14007c6e8f
4 changed files with 34 additions and 0 deletions
26
store/build.gradle.kts
Normal file
26
store/build.gradle.kts
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* Copyright © 2021-2023 Harsh Shandilya.
|
||||
* Use of this source code is governed by an MIT-style
|
||||
* license that can be found in the LICENSE file or at
|
||||
* https://opensource.org/licenses/MIT.
|
||||
*/
|
||||
@file:Suppress("UnstableApiUsage")
|
||||
|
||||
plugins {
|
||||
id("dev.msfjarvis.claw.android-library")
|
||||
id("dev.msfjarvis.claw.kotlin-android")
|
||||
alias(libs.plugins.anvil)
|
||||
}
|
||||
|
||||
android { namespace = "dev.msfjarvis.claw.store" }
|
||||
|
||||
anvil { generateDaggerFactories.set(true) }
|
||||
|
||||
dependencies {
|
||||
api(projects.database)
|
||||
api(projects.model)
|
||||
|
||||
implementation(projects.api)
|
||||
implementation(libs.kotlinx.atomicfu)
|
||||
implementation(libs.store5)
|
||||
}
|
5
store/src/main/AndroidManifest.xml
Normal file
5
store/src/main/AndroidManifest.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
</manifest>
|
Loading…
Add table
Add a link
Reference in a new issue