From 24de5d91d94ed0097d27958957a96beed919622c Mon Sep 17 00:00:00 2001 From: Ahn-seokjoo Date: Sun, 30 Jun 2024 03:30:59 +0900 Subject: [PATCH 1/2] =?UTF-8?q?1=EC=B0=A8=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- save/.gitignore | 1 - save/build.gradle.kts | 43 ------------------- save/consumer-rules.pro | 0 save/proguard-rules.pro | 21 --------- .../feature/save/ExampleInstrumentedTest.kt | 24 ----------- save/src/main/AndroidManifest.xml | 4 -- .../dorabangs/feature/save/ExampleUnitTest.kt | 17 -------- 7 files changed, 110 deletions(-) delete mode 100644 save/.gitignore delete mode 100644 save/build.gradle.kts delete mode 100644 save/consumer-rules.pro delete mode 100644 save/proguard-rules.pro delete mode 100644 save/src/androidTest/java/com/mashup/dorabangs/feature/save/ExampleInstrumentedTest.kt delete mode 100644 save/src/main/AndroidManifest.xml delete mode 100644 save/src/test/java/com/mashup/dorabangs/feature/save/ExampleUnitTest.kt diff --git a/save/.gitignore b/save/.gitignore deleted file mode 100644 index 42afabfd..00000000 --- a/save/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/save/build.gradle.kts b/save/build.gradle.kts deleted file mode 100644 index 61127e9f..00000000 --- a/save/build.gradle.kts +++ /dev/null @@ -1,43 +0,0 @@ -plugins { - alias(libs.plugins.com.android.library) - alias(libs.plugins.org.jetbrains.kotlin.android) -} - -android { - namespace = "com.mashup.dorabangs.feature.save" - compileSdk = 34 - - defaultConfig { - minSdk = 24 - - testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" - consumerProguardFiles("consumer-rules.pro") - } - - buildTypes { - release { - isMinifyEnabled = false - proguardFiles( - getDefaultProguardFile("proguard-android-optimize.txt"), - "proguard-rules.pro" - ) - } - } - compileOptions { - sourceCompatibility = JavaVersion.VERSION_1_8 - targetCompatibility = JavaVersion.VERSION_1_8 - } - kotlinOptions { - jvmTarget = "1.8" - } -} - -dependencies { - - implementation(libs.core.ktx) - implementation(libs.appcompat) - implementation(libs.material) - testImplementation(libs.junit) - androidTestImplementation(libs.androidx.test.ext.junit) - androidTestImplementation(libs.espresso.core) -} \ No newline at end of file diff --git a/save/consumer-rules.pro b/save/consumer-rules.pro deleted file mode 100644 index e69de29b..00000000 diff --git a/save/proguard-rules.pro b/save/proguard-rules.pro deleted file mode 100644 index 481bb434..00000000 --- a/save/proguard-rules.pro +++ /dev/null @@ -1,21 +0,0 @@ -# Add project specific ProGuard rules here. -# You can control the set of applied configuration files using the -# proguardFiles setting in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} - -# Uncomment this to preserve the line number information for -# debugging stack traces. -#-keepattributes SourceFile,LineNumberTable - -# If you keep the line number information, uncomment this to -# hide the original source file name. -#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/save/src/androidTest/java/com/mashup/dorabangs/feature/save/ExampleInstrumentedTest.kt b/save/src/androidTest/java/com/mashup/dorabangs/feature/save/ExampleInstrumentedTest.kt deleted file mode 100644 index 51614f40..00000000 --- a/save/src/androidTest/java/com/mashup/dorabangs/feature/save/ExampleInstrumentedTest.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.mashup.dorabangs.feature.save - -import androidx.test.platform.app.InstrumentationRegistry -import androidx.test.ext.junit.runners.AndroidJUnit4 - -import org.junit.Test -import org.junit.runner.RunWith - -import org.junit.Assert.* - -/** - * Instrumented test, which will execute on an Android device. - * - * See [testing documentation](http://d.android.com/tools/testing). - */ -@RunWith(AndroidJUnit4::class) -class ExampleInstrumentedTest { - @Test - fun useAppContext() { - // Context of the app under test. - val appContext = InstrumentationRegistry.getInstrumentation().targetContext - assertEquals("com.mashup.dorabangs.feature.save.test", appContext.packageName) - } -} \ No newline at end of file diff --git a/save/src/main/AndroidManifest.xml b/save/src/main/AndroidManifest.xml deleted file mode 100644 index a5918e68..00000000 --- a/save/src/main/AndroidManifest.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/save/src/test/java/com/mashup/dorabangs/feature/save/ExampleUnitTest.kt b/save/src/test/java/com/mashup/dorabangs/feature/save/ExampleUnitTest.kt deleted file mode 100644 index 492db8ae..00000000 --- a/save/src/test/java/com/mashup/dorabangs/feature/save/ExampleUnitTest.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.mashup.dorabangs.feature.save - -import org.junit.Test - -import org.junit.Assert.* - -/** - * Example local unit test, which will execute on the development machine (host). - * - * See [testing documentation](http://d.android.com/tools/testing). - */ -class ExampleUnitTest { - @Test - fun addition_isCorrect() { - assertEquals(4, 2 + 2) - } -} \ No newline at end of file From 58d8109c780d35408100bd02856e2b38682dbfc9 Mon Sep 17 00:00:00 2001 From: Ahn-seokjoo Date: Sun, 30 Jun 2024 03:32:50 +0900 Subject: [PATCH 2/2] =?UTF-8?q?git=20ignore=20=EC=A0=9C=EA=B5=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/.gitignore | 1 - core/.gitignore | 1 - core/coroutine/.gitignore | 1 - core/designsystem/.gitignore | 1 - core/navigation/.gitignore | 1 - data/.gitignore | 1 - domain/.gitignore | 1 - feature/.gitignore | 1 - feature/home/.gitignore | 1 - feature/save/.gitignore | 1 - feature/storage/.gitignore | 1 - 11 files changed, 11 deletions(-) delete mode 100644 app/.gitignore delete mode 100644 core/.gitignore delete mode 100644 core/coroutine/.gitignore delete mode 100644 core/designsystem/.gitignore delete mode 100644 core/navigation/.gitignore delete mode 100644 data/.gitignore delete mode 100644 domain/.gitignore delete mode 100644 feature/.gitignore delete mode 100644 feature/home/.gitignore delete mode 100644 feature/save/.gitignore delete mode 100644 feature/storage/.gitignore diff --git a/app/.gitignore b/app/.gitignore deleted file mode 100644 index 42afabfd..00000000 --- a/app/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/core/.gitignore b/core/.gitignore deleted file mode 100644 index 42afabfd..00000000 --- a/core/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/core/coroutine/.gitignore b/core/coroutine/.gitignore deleted file mode 100644 index 42afabfd..00000000 --- a/core/coroutine/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/core/designsystem/.gitignore b/core/designsystem/.gitignore deleted file mode 100644 index 42afabfd..00000000 --- a/core/designsystem/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/core/navigation/.gitignore b/core/navigation/.gitignore deleted file mode 100644 index 42afabfd..00000000 --- a/core/navigation/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/data/.gitignore b/data/.gitignore deleted file mode 100644 index 42afabfd..00000000 --- a/data/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/domain/.gitignore b/domain/.gitignore deleted file mode 100644 index 42afabfd..00000000 --- a/domain/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/feature/.gitignore b/feature/.gitignore deleted file mode 100644 index 42afabfd..00000000 --- a/feature/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/feature/home/.gitignore b/feature/home/.gitignore deleted file mode 100644 index 42afabfd..00000000 --- a/feature/home/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/feature/save/.gitignore b/feature/save/.gitignore deleted file mode 100644 index 42afabfd..00000000 --- a/feature/save/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/feature/storage/.gitignore b/feature/storage/.gitignore deleted file mode 100644 index 42afabfd..00000000 --- a/feature/storage/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file