euphony-listener is an error that occurs in Android Studio 2021.1.1 version #162
sunyeongan
started this conversation in
General
Replies: 3 comments
-
@sunyeongan Hi! Thank you for reporting this issue :) My dev environment is:
$ git log -5 --oneline
c02317f (HEAD -> master, origin/master, origin/HEAD) Modify Indentation for README.md and README_KR.md (#6)
|
Beta Was this translation helpful? Give feedback.
0 replies
-
My build environment
|
Beta Was this translation helpful? Give feedback.
0 replies
-
@zion830 @yeonns oh... Then it's a different matter! Thank you for your kind answer. And from now on, I will write down the contents of the development environment at a glance. It looks very nice. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello! I installed the Android Studio 2021.1.(chipmunk) 1 version on my new computer and tried to build the euphony-listener, and there was a collision problem (probably) with the gradle version.
The error in my computer's Android studio is as follows
1.
Can't determine type for tag '?attr/colorSurface'
values.xml
2.
"No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android"
euphony-listener content was:
bulid.gradle(Project)
classpath 'com.android.tools.build:gradle:3.5.2'
bulid.gradle (Module)
android{
compileSdkVersion 29
}
defaultConfig{
targetSdkVersion 29
}
gradle-wrapper.properties
distributionUrl=https://services.gradle.org/distributions/gradle-5.4.1-all.zip
The build was successful after updating the gradle version
The correction I made is as follows.
Modify from bulid.gradle(Project)
classpath 'com.android.tools.build:gradle:7.2.1'
Modifying from bulid.gradle (Module)
android{
compileSdkVersion 32
}
defaultConfig{
targetSdkVersion 32
}
Modifying from gradle-wrapper.properties
distributionUrl=https://services.gradle.org/distributions/gradle-7.3.3-all.zip
I hope it will be reflected in the euphony-listener
Beta Was this translation helpful? Give feedback.
All reactions