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') }