Skip to content

Commit

Permalink
Merge pull request #16 from NaJuDoRyeong/main
Browse files Browse the repository at this point in the history
Snyc
  • Loading branch information
KDW03 authored Sep 19, 2023
2 parents a862e15 + fcb54a2 commit ef276dc
Show file tree
Hide file tree
Showing 284 changed files with 5,407 additions and 302 deletions.
28 changes: 28 additions & 0 deletions .github/ci-gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#
# Copyright 2020 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

org.gradle.daemon=false
org.gradle.parallel=true
org.gradle.workers.max=2

kotlin.incremental=false
kotlin.compiler.execution.strategy=in-process

# Controls KotlinOptions.allWarningsAsErrors.
# This value used in CI and is currently set to false.
# If you want to treat warnings as errors locally, set this property to true
# in your ~/.gradle/gradle.properties file.
warningsAsErrors=false
118 changes: 5 additions & 113 deletions .github/workflows/Build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: gradle/wrapper-validation-action@v1

- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties

- name: Set up JDK 17
uses: actions/setup-java@v3
Expand All @@ -34,20 +34,8 @@ jobs:
- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Check spotless
run: ./gradlew spotlessCheck --init-script gradle/init.gradle.kts --no-configuration-cache

- name: Build all build type and flavor permutations
run: ./gradlew assemble

- name: Upload build outputs (APKs)
uses: actions/upload-artifact@v3
with:
name: APKs
path: '**/build/outputs/apk/**/*.apk'

- name: Run local tests
run: ./gradlew testDemoDebug testProdDebug
run: ./gradlew testDemoDebug

test:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -79,7 +67,7 @@ jobs:
- name: Run all local screenshot tests (Roborazzi)
id: screenshotsverify
continue-on-error: true
run: ./gradlew verifyRoborazziDemoDebug
run: ./gradlew verifyRoborazziDemoDebug --stacktrace --info

- name: Prevent pushing new screenshots if this is a fork
id: checkfork
Expand All @@ -106,107 +94,11 @@ jobs:
# Run local tests after screenshot tests to avoid wrong UP-TO-DATE. TODO: Ignore screenshots.
- name: Run local tests
if: always()
run: ./gradlew testDemoDebug testProdDebug
run: ./gradlew testDemoDebug

- name: Upload test results (XML)
if: always()
uses: actions/upload-artifact@v3
with:
name: test-results
path: '**/build/test-results/test*UnitTest/**.xml'

- name: Check lint
run: ./gradlew :app:lintProdRelease :app-nia-catalog:lintRelease :lint:lint

- name: Upload lint reports (HTML)
if: always()
uses: actions/upload-artifact@v3
with:
name: lint-reports
path: '**/build/reports/lint-results-*.html'

androidTest:
needs: build
runs-on: macOS-latest # enables hardware acceleration in the virtual machine
timeout-minutes: 55
strategy:
matrix:
api-level: [26, 30]

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17

- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Build AndroidTest apps
run: ./gradlew packageDemoDebug packageDemoDebugAndroidTest --daemon

- name: Run instrumentation tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
arch: x86_64
disable-animations: true
disk-size: 6000M
heap-size: 600M
script: ./gradlew connectedDemoDebugAndroidTest --daemon

- name: Upload test reports
if: always()
uses: actions/upload-artifact@v3
with:
name: test-reports-${{ matrix.api-level }}
path: '**/build/reports/androidTests'

androidTest-GMD:
needs: build
runs-on: macOS-latest # enables hardware acceleration in the virtual machine
timeout-minutes: 90

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17

- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Accept Android licenses
run: yes | "$ANDROID_HOME"/cmdline-tools/latest/bin/sdkmanager --licenses || true

- name: Build AndroidTest apps
run: ./gradlew packageDemoDebug packageDemoDebugAndroidTest

- name: Run instrumented tests with GMD
run: ./gradlew ciDemoDebugAndroidTest --no-parallel --max-workers=1
-Pandroid.testoptions.manageddevices.emulator.gpu="swiftshader_indirect" -Pandroid.experimental.testOptions.managedDevices.emulator.showKernelLogging=true

- name: Upload test reports
if: success() || failure()
uses: actions/upload-artifact@v3
with:
name: test-reports-GMD
path: '**/build/reports/androidTests'

- name: Print disk space usage
if: failure()
run: df -h
path: '**/build/test-results/test*UnitTest/**.xml'
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion app/src/main/java/com/najudoryeong/mineme/ui/DoApp.kt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ fun DoApp(
)
) {


Box(
Modifier.fillMaxSize()
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,7 @@ class DoAppScreenSizesScreenshotTests {
@Inject
lateinit var networkMonitor: NetworkMonitor

@Inject
lateinit var userDataRepository: UserDataRepository


@Before
fun setup() {
val config = Configuration.Builder()
.setMinimumLoggingLevel(Log.DEBUG)
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
27
23
0
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Binary file modified build-logic/convention/build/libs/convention.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
10
5
0
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
10
5
0
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
-- Merging decision tree log ---
manifest
ADDED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1258519773561712806.xml:2:13-83
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1258519773561712806.xml:2:13-83
ADDED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest5259636980210529864.xml:2:13-83
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest5259636980210529864.xml:2:13-83
package
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1258519773561712806.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest5259636980210529864.xml
xmlns:android
ADDED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1258519773561712806.xml:2:23-81
ADDED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest5259636980210529864.xml:2:23-81
uses-sdk
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1258519773561712806.xml reason: use-sdk injection requested
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1258519773561712806.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1258519773561712806.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest5259636980210529864.xml reason: use-sdk injection requested
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest5259636980210529864.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest5259636980210529864.xml
android:targetSdkVersion
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1258519773561712806.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest5259636980210529864.xml
android:minSdkVersion
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1258519773561712806.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\analytics\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest5259636980210529864.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
-- Merging decision tree log ---
manifest
ADDED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest12135539837104617664.xml:2:13-83
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest12135539837104617664.xml:2:13-83
ADDED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1474444785759347751.xml:2:13-83
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1474444785759347751.xml:2:13-83
package
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest12135539837104617664.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1474444785759347751.xml
xmlns:android
ADDED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest12135539837104617664.xml:2:23-81
ADDED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1474444785759347751.xml:2:23-81
uses-sdk
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest12135539837104617664.xml reason: use-sdk injection requested
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest12135539837104617664.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest12135539837104617664.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1474444785759347751.xml reason: use-sdk injection requested
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1474444785759347751.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1474444785759347751.xml
android:targetSdkVersion
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest12135539837104617664.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1474444785759347751.xml
android:minSdkVersion
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest12135539837104617664.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\common\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest1474444785759347751.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
i/
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
o/hiltAggregated.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
i/
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
-- Merging decision tree log ---
manifest
ADDED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest10366018529660021664.xml:2:13-83
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest10366018529660021664.xml:2:13-83
ADDED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest17621535538589064799.xml:2:13-83
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest17621535538589064799.xml:2:13-83
package
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest10366018529660021664.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest17621535538589064799.xml
xmlns:android
ADDED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest10366018529660021664.xml:2:23-81
ADDED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest17621535538589064799.xml:2:23-81
uses-sdk
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest10366018529660021664.xml reason: use-sdk injection requested
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest10366018529660021664.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest10366018529660021664.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest17621535538589064799.xml reason: use-sdk injection requested
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest17621535538589064799.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest17621535538589064799.xml
android:targetSdkVersion
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest10366018529660021664.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest17621535538589064799.xml
android:minSdkVersion
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest10366018529660021664.xml
INJECTED from C:\Users\kimdowoo\AndroidStudioProjects\mineme\core\data-test\build\intermediates\tmp\ProcessLibraryManifest\demo\debug\tempAndroidManifest17621535538589064799.xml
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
14
12
0
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
14
12
0
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified core/database/build/kspCaches/demoDebug/classpath-entries.bin
Binary file not shown.
Loading

0 comments on commit ef276dc

Please sign in to comment.