Please help me!!! Gradlew build error. Project ':expo-app-auth' -> org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.21

81

/home/expo/workingdir/build/node_modules/react-native-reanimated/android/react-native-reanimated-71-hermes.aar

82

[stderr]

FAILURE:

83

[stderr]

Build failed with an exception.

84

[stderr]

* What went wrong:

85

[stderr]

The Android Gradle plugin supports only Kotlin Gradle plugin version 1.5.20 and higher.

86

[stderr]

The following dependencies do not satisfy the required version:

87

[stderr]

project ':expo-app-auth' -> org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.21

88

[stderr]

* Try:

89

[stderr]

> Run with --stacktrace option to get the stack trace.

90

[stderr]

> Run with --info or --debug option to get more log output.

91

[stderr]

> Run with --scan

92

[stderr]

to get full insights.

93

[stderr]

* Get more help at https://help.gradle.org

Try this

buildscript {
    ext.kotlin_version = '1.5.20' // or higher version
    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

Hi @seung980428

According to the Expo SDK 44 release notes:

expo-app-auth and expo-google-app-auth are deprecated, use expo-auth-session instead.
The expo-auth-session library was designed to be a replacement for expo-app-auth, but built on top of existing primitives in the Expo SDK, like expo-web-browser and expo-random, rather than as a wrapper for the AppAuth-iOS and AppAuth-Android native libraries. We now recommend using expo-auth-session instead, and so we are deprecating expo-app-auth. If you would like to continue using the AppAuth-iOS and AppAuth-Android native libraries, you may use react-native-app-auth instead.

See also: Authentication - Expo Documentation