From 44ed718894b56376144860f56165f04746325ed1 Mon Sep 17 00:00:00 2001 From: rca Date: Sat, 6 Jul 2024 13:43:52 +0900 Subject: [PATCH 01/61] =?UTF-8?q?common=E3=83=A2=E3=82=B8=E3=83=A5?= =?UTF-8?q?=E3=83=BC=E3=83=AB=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- feature/common/.gitignore | 1 + feature/common/build.gradle | 35 +++++++++++++++++++ feature/common/consumer-rules.pro | 0 feature/common/proguard-rules.pro | 21 +++++++++++ .../common/ExampleInstrumentedTest.java | 26 ++++++++++++++ feature/common/src/main/AndroidManifest.xml | 4 +++ .../feature/common/ExampleUnitTest.java | 17 +++++++++ settings.gradle | 1 + 8 files changed, 105 insertions(+) create mode 100644 feature/common/.gitignore create mode 100644 feature/common/build.gradle create mode 100644 feature/common/consumer-rules.pro create mode 100644 feature/common/proguard-rules.pro create mode 100644 feature/common/src/androidTest/java/one/nem/kidshift/feature/common/ExampleInstrumentedTest.java create mode 100644 feature/common/src/main/AndroidManifest.xml create mode 100644 feature/common/src/test/java/one/nem/kidshift/feature/common/ExampleUnitTest.java diff --git a/feature/common/.gitignore b/feature/common/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/feature/common/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/feature/common/build.gradle b/feature/common/build.gradle new file mode 100644 index 0000000..984c638 --- /dev/null +++ b/feature/common/build.gradle @@ -0,0 +1,35 @@ +plugins { + alias(libs.plugins.androidLibrary) +} + +android { + namespace 'one.nem.kidshift.feature.common' + compileSdk 34 + + defaultConfig { + minSdk 24 + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + consumerProguardFiles "consumer-rules.pro" + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } +} + +dependencies { + + implementation libs.appcompat + implementation libs.material + testImplementation libs.junit + androidTestImplementation libs.ext.junit + androidTestImplementation libs.espresso.core +} \ No newline at end of file diff --git a/feature/common/consumer-rules.pro b/feature/common/consumer-rules.pro new file mode 100644 index 0000000..e69de29 diff --git a/feature/common/proguard-rules.pro b/feature/common/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/feature/common/proguard-rules.pro @@ -0,0 +1,21 @@ +# 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/feature/common/src/androidTest/java/one/nem/kidshift/feature/common/ExampleInstrumentedTest.java b/feature/common/src/androidTest/java/one/nem/kidshift/feature/common/ExampleInstrumentedTest.java new file mode 100644 index 0000000..2ec335a --- /dev/null +++ b/feature/common/src/androidTest/java/one/nem/kidshift/feature/common/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package one.nem.kidshift.feature.common; + +import android.content.Context; + +import androidx.test.platform.app.InstrumentationRegistry; +import androidx.test.ext.junit.runners.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumented test, which will execute on an Android device. + * + * @see Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); + assertEquals("one.nem.kidshift.feature.common.test", appContext.getPackageName()); + } +} \ No newline at end of file diff --git a/feature/common/src/main/AndroidManifest.xml b/feature/common/src/main/AndroidManifest.xml new file mode 100644 index 0000000..a5918e6 --- /dev/null +++ b/feature/common/src/main/AndroidManifest.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/feature/common/src/test/java/one/nem/kidshift/feature/common/ExampleUnitTest.java b/feature/common/src/test/java/one/nem/kidshift/feature/common/ExampleUnitTest.java new file mode 100644 index 0000000..24976ff --- /dev/null +++ b/feature/common/src/test/java/one/nem/kidshift/feature/common/ExampleUnitTest.java @@ -0,0 +1,17 @@ +package one.nem.kidshift.feature.common; + +import org.junit.Test; + +import static org.junit.Assert.*; + +/** + * Example local unit test, which will execute on the development machine (host). + * + * @see Testing documentation + */ +public class ExampleUnitTest { + @Test + public void addition_isCorrect() { + assertEquals(4, 2 + 2); + } +} \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index c809618..cda8bac 100644 --- a/settings.gradle +++ b/settings.gradle @@ -29,3 +29,4 @@ include ':utils' include ':data' include ':model' include ':shared' +include ':feature:common' -- 2.45.1 From eb03dca2768c981721c5da6fbee288c51bbbd794 Mon Sep 17 00:00:00 2001 From: rca Date: Sat, 6 Jul 2024 13:44:52 +0900 Subject: [PATCH 02/61] =?UTF-8?q?common=E3=83=A2=E3=82=B8=E3=83=A5?= =?UTF-8?q?=E3=83=BC=E3=83=AB=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/gradle.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/.idea/gradle.xml b/.idea/gradle.xml index 3cd2a4c..4d7371d 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -13,6 +13,7 @@