feat: init store module

This commit is contained in:
Harsh Shandilya 2023-07-25 01:30:54 +05:30
parent 6ca500066f
commit 14007c6e8f
No known key found for this signature in database
4 changed files with 34 additions and 0 deletions

26
store/build.gradle.kts Normal file
View 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)
}

View 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>