Skip to content

Commit 9f30683

Browse files
committed
move icon resources to separate module
1 parent 5b0d773 commit 9f30683

File tree

1,300 files changed

+19
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,300 files changed

+19
-0
lines changed

app/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ android {
7474
dependencies {
7575
implementation(project(":core"))
7676
implementation(project(":data_local"))
77+
implementation(project(":resources"))
7778
implementation(project(":feature_main"))
7879
implementation(project(":feature_running_records"))
7980
implementation(project(":feature_change_record_type"))

features/feature_widget/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ android {
1717

1818
dependencies {
1919
implementation(project(":core"))
20+
implementation(project(":resources"))
2021
implementation(project(":feature_dialogs"))
2122
implementation(project(":feature_views"))
2223

resources/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

resources/build.gradle.kts

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import com.example.util.simpletimetracker.Base
2+
import com.example.util.simpletimetracker.applyAndroidLibrary
3+
4+
plugins {
5+
id("com.android.library")
6+
id("kotlin-android")
7+
}
8+
9+
applyAndroidLibrary()
10+
11+
android {
12+
namespace = "${Base.namespace}.resources"
13+
}
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest />

0 commit comments

Comments
 (0)