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")