@capgo/inappbrowser 7.0.0 → 7.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,9 @@
1
1
  ext {
2
2
  junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.2'
3
- androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1'
4
- androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.5'
5
- androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1'
3
+ androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.7.0'
4
+ androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.2.1'
5
+ androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.6.1'
6
+ androidxBrowserVersion = project.hasProperty('androidxBrowserVersion') ? rootProject.ext.androidxBrowserVersion : '1.8.0'
6
7
  }
7
8
 
8
9
  buildscript {
@@ -11,7 +12,7 @@ buildscript {
11
12
  mavenCentral()
12
13
  }
13
14
  dependencies {
14
- classpath 'com.android.tools.build:gradle:8.0.1'
15
+ classpath 'com.android.tools.build:gradle:8.7.3'
15
16
  }
16
17
  }
17
18
 
@@ -19,10 +20,10 @@ apply plugin: 'com.android.library'
19
20
 
20
21
  android {
21
22
  namespace "ee.forgr.capacitor_inappbrowser"
22
- compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 33
23
+ compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 35
23
24
  defaultConfig {
24
- minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 22
25
- targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 33
25
+ minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 23
26
+ targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 35
26
27
  versionCode 1
27
28
  versionName "1.0"
28
29
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -37,8 +38,8 @@ android {
37
38
  abortOnError false
38
39
  }
39
40
  compileOptions {
40
- sourceCompatibility JavaVersion.VERSION_17
41
- targetCompatibility JavaVersion.VERSION_17
41
+ sourceCompatibility JavaVersion.VERSION_21
42
+ targetCompatibility JavaVersion.VERSION_21
42
43
  }
43
44
  }
44
45
 
@@ -51,13 +52,14 @@ repositories {
51
52
  dependencies {
52
53
  implementation fileTree(dir: 'libs', include: ['*.jar'])
53
54
  implementation project(':capacitor-android')
55
+ implementation 'com.caverock:androidsvg:1.4'
54
56
  implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
57
+ implementation "androidx.window:window:1.3.0"
55
58
  testImplementation "junit:junit:$junitVersion"
56
59
  androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
57
60
  androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
58
- implementation 'androidx.browser:browser:1.0.0'
59
- implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
60
- implementation 'com.google.android.material:material:1.0.0'
61
+ implementation "androidx.browser:browser:$androidxBrowserVersion"
62
+ implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
63
+ implementation 'com.google.android.material:material:1.12.0'
61
64
  implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0'
62
- implementation 'com.google.android.material:material:1.9.0'
63
65
  }
@@ -7,4 +7,5 @@
7
7
  <data android:scheme="http" />
8
8
  </intent>
9
9
  </queries>
10
- </manifest>
10
+ <uses-permission android:name="android.permission.CAMERA"/>
11
+ </manifest>