Skip to content

Commit ee1cce3

Browse files
authored
Auth tab initial setup (#119)
* remove duplicate intent-filter * - Update androidx.browser to 1.9.0 - Update AGP version to 8.9.1 -- requires update to gradle wrapper 8.11.1 - Update compile and target sdk to 36
1 parent 919a4d0 commit ee1cce3

File tree

3 files changed

+6
-16
lines changed

3 files changed

+6
-16
lines changed

build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,10 @@ buildscript {
1313
"javaTargetCompatibility": sdkTargetJavaVersion,
1414
]
1515

16-
1716
ext.deps = [
1817
'annotation' : 'androidx.annotation:annotation:1.7.0',
1918
'appcompat' : 'androidx.appcompat:appcompat:1.6.0',
20-
'browser' : 'androidx.browser:browser:1.7.0',
19+
'browser' : 'androidx.browser:browser:1.9.0',
2120
'kotlin' : 'org.jetbrains.kotlin:kotlin-stdlib:1.9.20',
2221

2322
// test dependencies
@@ -29,7 +28,7 @@ buildscript {
2928
]
3029

3130
dependencies {
32-
classpath 'com.android.tools.build:gradle:8.5.2'
31+
classpath 'com.android.tools.build:gradle:8.9.1'
3332
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.9.10'
3433
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0'
3534
}
@@ -44,9 +43,9 @@ plugins {
4443
version = '3.1.1-SNAPSHOT'
4544
group = "com.braintreepayments"
4645
ext {
47-
compileSdkVersion = 35
46+
compileSdkVersion = 36
4847
minSdkVersion = 23
49-
targetSdkVersion = 35
48+
targetSdkVersion = 36
5049
versionCode = 73
5150
versionName = version
5251
}

demo/src/main/AndroidManifest.xml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,6 @@
4747
<category android:name="android.intent.category.DEFAULT" />
4848
<category android:name="android.intent.category.BROWSABLE" />
4949

50-
<data android:scheme="https" />
51-
<data android:host="mobile-sdk-demo-site-838cead5d3ab.herokuapp.com" />
52-
</intent-filter>
53-
<intent-filter android:autoVerify="true">
54-
<action android:name="android.intent.action.VIEW" />
55-
56-
<category android:name="android.intent.category.DEFAULT" />
57-
<category android:name="android.intent.category.BROWSABLE" />
58-
5950
<data android:scheme="https" />
6051
<data android:host="mobile-sdk-demo-site-838cead5d3ab.herokuapp.com" />
6152
</intent-filter>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Jul 17 09:55:05 CDT 2023
1+
#Thu Sep 25 12:23:31 PDT 2025
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)