From 3b3695f97bea81f429c7943f0b84b46294c21eba Mon Sep 17 00:00:00 2001 From: arkon Date: Sun, 20 Dec 2020 12:16:23 -0500 Subject: [PATCH] Rename defaultRes module to core --- common.gradle | 2 +- {defaultRes => core}/AndroidManifest.xml | 0 {defaultRes => core}/build.gradle.kts | 0 .../res/mipmap-hdpi/ic_launcher.png | Bin .../res/mipmap-mdpi/ic_launcher.png | Bin .../res/mipmap-xhdpi/ic_launcher.png | Bin .../res/mipmap-xxhdpi/ic_launcher.png | Bin .../res/mipmap-xxxhdpi/ic_launcher.png | Bin settings.gradle.kts | 2 +- 9 files changed, 2 insertions(+), 2 deletions(-) rename {defaultRes => core}/AndroidManifest.xml (100%) rename {defaultRes => core}/build.gradle.kts (100%) rename {defaultRes => core}/res/mipmap-hdpi/ic_launcher.png (100%) rename {defaultRes => core}/res/mipmap-mdpi/ic_launcher.png (100%) rename {defaultRes => core}/res/mipmap-xhdpi/ic_launcher.png (100%) rename {defaultRes => core}/res/mipmap-xxhdpi/ic_launcher.png (100%) rename {defaultRes => core}/res/mipmap-xxxhdpi/ic_launcher.png (100%) diff --git a/common.gradle b/common.gradle index dbad91708..788d0a7df 100644 --- a/common.gradle +++ b/common.gradle @@ -58,7 +58,7 @@ repositories { dependencies { implementation project(":annotations") - implementation project(":defaultRes") + implementation project(":core") // Lib 1.2, but using specific commit so we don't need to bump up the version compileOnly "com.github.tachiyomiorg:extensions-lib:a596412" diff --git a/defaultRes/AndroidManifest.xml b/core/AndroidManifest.xml similarity index 100% rename from defaultRes/AndroidManifest.xml rename to core/AndroidManifest.xml diff --git a/defaultRes/build.gradle.kts b/core/build.gradle.kts similarity index 100% rename from defaultRes/build.gradle.kts rename to core/build.gradle.kts diff --git a/defaultRes/res/mipmap-hdpi/ic_launcher.png b/core/res/mipmap-hdpi/ic_launcher.png similarity index 100% rename from defaultRes/res/mipmap-hdpi/ic_launcher.png rename to core/res/mipmap-hdpi/ic_launcher.png diff --git a/defaultRes/res/mipmap-mdpi/ic_launcher.png b/core/res/mipmap-mdpi/ic_launcher.png similarity index 100% rename from defaultRes/res/mipmap-mdpi/ic_launcher.png rename to core/res/mipmap-mdpi/ic_launcher.png diff --git a/defaultRes/res/mipmap-xhdpi/ic_launcher.png b/core/res/mipmap-xhdpi/ic_launcher.png similarity index 100% rename from defaultRes/res/mipmap-xhdpi/ic_launcher.png rename to core/res/mipmap-xhdpi/ic_launcher.png diff --git a/defaultRes/res/mipmap-xxhdpi/ic_launcher.png b/core/res/mipmap-xxhdpi/ic_launcher.png similarity index 100% rename from defaultRes/res/mipmap-xxhdpi/ic_launcher.png rename to core/res/mipmap-xxhdpi/ic_launcher.png diff --git a/defaultRes/res/mipmap-xxxhdpi/ic_launcher.png b/core/res/mipmap-xxxhdpi/ic_launcher.png similarity index 100% rename from defaultRes/res/mipmap-xxxhdpi/ic_launcher.png rename to core/res/mipmap-xxxhdpi/ic_launcher.png diff --git a/settings.gradle.kts b/settings.gradle.kts index ac95f724b..d4e49bb18 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,5 +1,5 @@ include(":annotations") -include(":defaultRes") +include(":core") include(":lib-ratelimit") project(":lib-ratelimit").projectDir = File("lib/ratelimit")