From b1ee284e7f554f6c88c61e3c3b5f0558065b0f8c Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Sat, 7 Oct 2017 20:48:45 +0800 Subject: [PATCH] Rename resource -> common --- app/build.gradle | 2 +- {resource => common}/.gitignore | 0 {resource => common}/build.gradle | 0 {resource => common}/src/main/AndroidManifest.xml | 0 .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin .../src/main/res/mipmap-xxhdpi/ic_launcher.png | Bin .../src/main/res/mipmap-xxxhdpi/ic_launcher.png | Bin settings.gradle | 2 +- unhide/build.gradle | 2 +- 11 files changed, 3 insertions(+), 3 deletions(-) rename {resource => common}/.gitignore (100%) rename {resource => common}/build.gradle (100%) rename {resource => common}/src/main/AndroidManifest.xml (100%) rename {resource => common}/src/main/res/mipmap-hdpi/ic_launcher.png (100%) rename {resource => common}/src/main/res/mipmap-mdpi/ic_launcher.png (100%) rename {resource => common}/src/main/res/mipmap-xhdpi/ic_launcher.png (100%) rename {resource => common}/src/main/res/mipmap-xxhdpi/ic_launcher.png (100%) rename {resource => common}/src/main/res/mipmap-xxxhdpi/ic_launcher.png (100%) diff --git a/app/build.gradle b/app/build.gradle index 06ac493db..67489478c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -53,7 +53,7 @@ repositories { dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') - implementation project(':resource') + implementation project(':common') implementation project(':jarsigner') implementation 'com.android.support:recyclerview-v7:26.1.0' implementation 'com.android.support:cardview-v7:26.1.0' diff --git a/resource/.gitignore b/common/.gitignore similarity index 100% rename from resource/.gitignore rename to common/.gitignore diff --git a/resource/build.gradle b/common/build.gradle similarity index 100% rename from resource/build.gradle rename to common/build.gradle diff --git a/resource/src/main/AndroidManifest.xml b/common/src/main/AndroidManifest.xml similarity index 100% rename from resource/src/main/AndroidManifest.xml rename to common/src/main/AndroidManifest.xml diff --git a/resource/src/main/res/mipmap-hdpi/ic_launcher.png b/common/src/main/res/mipmap-hdpi/ic_launcher.png similarity index 100% rename from resource/src/main/res/mipmap-hdpi/ic_launcher.png rename to common/src/main/res/mipmap-hdpi/ic_launcher.png diff --git a/resource/src/main/res/mipmap-mdpi/ic_launcher.png b/common/src/main/res/mipmap-mdpi/ic_launcher.png similarity index 100% rename from resource/src/main/res/mipmap-mdpi/ic_launcher.png rename to common/src/main/res/mipmap-mdpi/ic_launcher.png diff --git a/resource/src/main/res/mipmap-xhdpi/ic_launcher.png b/common/src/main/res/mipmap-xhdpi/ic_launcher.png similarity index 100% rename from resource/src/main/res/mipmap-xhdpi/ic_launcher.png rename to common/src/main/res/mipmap-xhdpi/ic_launcher.png diff --git a/resource/src/main/res/mipmap-xxhdpi/ic_launcher.png b/common/src/main/res/mipmap-xxhdpi/ic_launcher.png similarity index 100% rename from resource/src/main/res/mipmap-xxhdpi/ic_launcher.png rename to common/src/main/res/mipmap-xxhdpi/ic_launcher.png diff --git a/resource/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/common/src/main/res/mipmap-xxxhdpi/ic_launcher.png similarity index 100% rename from resource/src/main/res/mipmap-xxxhdpi/ic_launcher.png rename to common/src/main/res/mipmap-xxxhdpi/ic_launcher.png diff --git a/settings.gradle b/settings.gradle index cf9389847..f03a99df7 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1 @@ -include ':app', ':unhide', ':resource', ':snet', ':jarsigner' \ No newline at end of file +include ':app', ':unhide', ':common', ':snet', ':jarsigner' \ No newline at end of file diff --git a/unhide/build.gradle b/unhide/build.gradle index 4864267bb..67f7a0b06 100644 --- a/unhide/build.gradle +++ b/unhide/build.gradle @@ -21,5 +21,5 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation project(':resource') + implementation project(':common') }