Skip to content

Commit

Permalink
Update dependencies (#641)
Browse files Browse the repository at this point in the history
Co-authored-by: Jim Anderson <[email protected]>
  • Loading branch information
poovamraj and jimmyjames committed Apr 18, 2023
1 parent a9d7453 commit c915ad3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@

### Requirements

Android API version 21 or later and Java 8+.
Android API version 31 or later and Java 8+.

> :warning: Applications targeting Android SDK version 30 and below should use version 2.9.0.
Here’s what you need in `build.gradle` to target Java 8 byte code for Android and Kotlin plugins respectively.

Expand Down
11 changes: 5 additions & 6 deletions auth0/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,11 @@ oss {
}

android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
compileSdkVersion 31

defaultConfig {
minSdkVersion 21
targetSdkVersion 30
targetSdkVersion 31
versionCode 1
versionName project.version

Expand Down Expand Up @@ -105,12 +104,12 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'androidx.browser:browser:1.3.0'
implementation 'androidx.browser:browser:1.4.0'
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion"
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
implementation "com.squareup.okhttp3:logging-interceptor:$okhttpVersion"
implementation 'com.google.code.gson:gson:2.8.9'
implementation 'com.google.androidbrowserhelper:androidbrowserhelper:2.2.2'
implementation 'com.google.androidbrowserhelper:androidbrowserhelper:2.4.0'

testImplementation 'junit:junit:4.13.2'
testImplementation 'org.hamcrest:java-hamcrest:2.0.0.0'
Expand All @@ -124,7 +123,7 @@ dependencies {
testImplementation "com.squareup.okhttp3:okhttp-tls:$okhttpVersion"
testImplementation 'com.jayway.awaitility:awaitility:1.7.0'
testImplementation 'org.robolectric:robolectric:4.6.1'
testImplementation 'androidx.test.espresso:espresso-intents:3.4.0'
testImplementation 'androidx.test.espresso:espresso-intents:3.5.1'
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutinesVersion"
}

Expand Down
5 changes: 2 additions & 3 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ plugins {
}

android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
compileSdkVersion 31

defaultConfig {
minSdkVersion 21
targetSdkVersion 30
targetSdkVersion 31
versionCode 1
versionName "1.0"

Expand Down
2 changes: 1 addition & 1 deletion sample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
android:label="@string/app_name"
android:theme="@style/Theme.Auth0Android.NoActionBar"
android:allowBackup="false">
<activity android:name=".MainActivity">
<activity android:name=".MainActivity" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
Expand Down

0 comments on commit c915ad3

Please sign in to comment.