Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 7 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget

plugins {
alias(libs.plugins.focpet.android.application)
alias(libs.plugins.focpet.android.buildconfig)
alias(libs.plugins.kindl.android.application)
alias(libs.plugins.kindl.android.buildconfig)
alias(libs.plugins.kotlin.android)
alias(libs.plugins.kotlin.compose)
alias(libs.plugins.dagger.hilt)
Expand All @@ -11,11 +11,11 @@ plugins {
}

android {
namespace = "com.focpet"
namespace = "com.kindl"
compileSdk = 36

defaultConfig {
applicationId = "com.focpet"
applicationId = "com.kindl"
minSdk = 24
targetSdk = 36
versionCode = 1
Expand Down Expand Up @@ -48,6 +48,9 @@ android {
}

dependencies {
// core
implementation(projects.core.network)

// presentation
implementation(projects.presentation.main)

Expand Down
24 changes: 0 additions & 24 deletions app/src/androidTest/java/com/focpet/ExampleInstrumentedTest.kt

This file was deleted.

8 changes: 4 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
xmlns:tools="http://schemas.android.com/tools">

<application
android:name=".FocpetApplication"
android:name="com.kindl.KindlApplication"
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Focpet">
android:theme="@style/Theme.Kindl">
<activity
android:name=".presentation.main.MainActivity"
android:name="com.kindl.presentation.main.MainActivity"
android:exported="true"
android:theme="@style/Theme.Focpet">
android:theme="@style/Theme.Kindl">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
package com.focpet
package com.kindl

import android.app.Application
import androidx.appcompat.app.AppCompatDelegate
import coil.ImageLoader
import coil.ImageLoaderFactory
import dagger.Lazy
import dagger.hilt.android.HiltAndroidApp
import timber.log.Timber
import javax.inject.Inject

@HiltAndroidApp
class FocpetApplication: Application(), ImageLoaderFactory {
class KindlApplication: Application(), ImageLoaderFactory {
@Inject
lateinit var imageLoaderProvider: dagger.Lazy<ImageLoader>
lateinit var imageLoaderProvider: Lazy<ImageLoader>

override fun onCreate() {
super.onCreate()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.focpet.di
package com.kindl.di

import android.content.Context
import coil.ImageLoader
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<resources>
<string name="app_name">Focpet</string>
</resources>
<string name="app_name">Kindl</string>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<style name="Theme.Focpet" parent="android:Theme.Material.Light.NoActionBar" />
<style name="Theme.Kindl" parent="android:Theme.Material.Light.NoActionBar" />
</resources>
17 changes: 0 additions & 17 deletions app/src/test/java/com/focpet/ExampleUnitTest.kt

This file was deleted.

Loading
Loading