Skip to content

Commit 69f79c8

Browse files
committed
Update app with SDK v2.9.0
1 parent 180bc51 commit 69f79c8

File tree

4 files changed

+4
-12
lines changed

4 files changed

+4
-12
lines changed

00-Login/android/app/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,8 @@ android {
136136
targetSdkVersion rootProject.ext.targetSdkVersion
137137
versionCode 1
138138
versionName "1.0"
139+
manifestPlaceholders = [auth0Domain: "YOUR_AUTH0_DOMAIN",
140+
auth0Scheme: "${applicationId}"]
139141
}
140142
splits {
141143
abi {

00-Login/android/app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,12 @@
1313
<activity
1414
android:name=".MainActivity"
1515
android:label="@string/app_name"
16-
android:launchMode="singleTask"
1716
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
1817
android:windowSoftInputMode="adjustResize">
1918
<intent-filter>
2019
<action android:name="android.intent.action.MAIN" />
2120
<category android:name="android.intent.category.LAUNCHER" />
2221
</intent-filter>
23-
<intent-filter>
24-
<action android:name="android.intent.action.VIEW" />
25-
<category android:name="android.intent.category.DEFAULT" />
26-
<category android:name="android.intent.category.BROWSABLE" />
27-
<data
28-
android:host="{DOMAIN}"
29-
android:pathPrefix="/android/${applicationId}/callback"
30-
android:scheme="${applicationId}" />
31-
</intent-filter>
3222
</activity>
3323
</application>
3424
</manifest>

00-Login/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
jcenter()
1414
}
1515
dependencies {
16-
classpath('com.android.tools.build:gradle:4.2.0')
16+
classpath('com.android.tools.build:gradle:4.2.1')
1717
// NOTE: Do not place your application dependencies here; they belong
1818
// in the individual module build.gradle files
1919
}

00-Login/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"dependencies": {
1212
"react": "17.0.1",
1313
"react-native": "0.64.0",
14-
"react-native-auth0": "2.8.3"
14+
"react-native-auth0": "2.9.0"
1515
},
1616
"devDependencies": {
1717
"@babel/core": "^7.12.9",

0 commit comments

Comments
 (0)