Skip to content

구동성공(가상Device) #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build-a-parked-app/end/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
agp = "8.4.0"
agp = "8.5.1"
kotlin = "1.9.0"
coreKtx = "1.13.1"
junit = "4.13.2"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Mar 11 15:18:05 EDT 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions build-a-parked-app/end/local.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
# Location of the SDK. This is only used by Gradle.
# For customization when using a Version Control System, please read the
# header note.
#Mon Mar 25 12:45:45 EDT 2024
sdk.dir=/Users/bsagmoe/Library/Android/sdk
#Sun Sep 29 20:38:31 KST 2024
sdk.dir=C\:\\Users\\kevin\\AppData\\Local\\Android\\Sdk
7 changes: 5 additions & 2 deletions car-app-library-fundamentals/start/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@ dependencies {
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
androidTestImplementation "androidx.compose.ui:ui-test-junit4"
/* androidTestImplementation "androidx.compose.ui:ui-test-junit4"
debugImplementation "androidx.compose.ui:ui-tooling"
debugImplementation "androidx.compose.ui:ui-test-manifest"
debugImplementation "androidx.compose.ui:ui-test-manifest"*/
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version" //try05
debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_version"
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@

package com.example.places

/*
try05 : https://developer.android.com/codelabs/car-app-library-fundamentals 와 https://thinking-face.tistory.com/383
Could not find androidx.compose.ui:ui-test-junit4:.
Required by:
project :app
처음 구동 한번은 됐음.
에서 제공하는 car-app-library-fundamentals/start 폴더의 Project를 Rebuild하는데 Grale Sync issues에서 계속 위 에러가 발생하고 있는데, 해결 방법을 알려줘
*/

import android.content.Intent
import android.os.Bundle
import androidx.activity.ComponentActivity
Expand Down
1 change: 1 addition & 0 deletions car-app-library-fundamentals/start/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
buildscript {
ext {
compose_bom = '2023.04.01'
compose_version = '1.4.2' //try05
}
}

Expand Down