Diff to HTML by rtfpessoa

Files changed (18) hide show
  1. android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  2. android/.gradle/buildOutputCleanup/cache.properties +2 -2
  3. android/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  4. android/app/build.gradle +2 -0
  5. android/app/capacitor.build.gradle +3 -2
  6. android/app/src/main/AndroidManifest.xml +2 -1
  7. android/app/src/main/assets/capacitor.plugins.json +5 -1
  8. android/app/src/main/assets/public/index.html +12 -13
  9. android/app/src/main/res/values/styles.xml +2 -2
  10. android/build.gradle +3 -2
  11. android/capacitor-cordova-android-plugins/build.gradle +9 -10
  12. android/capacitor-cordova-android-plugins/cordova.variables.gradle +1 -1
  13. android/capacitor.settings.gradle +3 -0
  14. android/gradle/wrapper/gradle-wrapper.jar +0 -0
  15. android/gradle/wrapper/gradle-wrapper.properties +1 -2
  16. android/gradlew +182 -108
  17. android/gradlew.bat +26 -27
  18. android/variables.gradle +14 -12
android/.gradle/buildOutputCleanup/buildOutputCleanup.lock CHANGED
Binary file
android/.gradle/buildOutputCleanup/cache.properties CHANGED
@@ -1,2 +1,2 @@
1
- #Thu May 12 15:19:27 UYT 2022
2
- gradle.version=7.3.3
1
+ #Mon Jan 23 19:05:42 UYT 2023
2
+ gradle.version=7.4.2
android/.gradle/buildOutputCleanup/outputFiles.bin CHANGED
Binary file
android/app/build.gradle CHANGED
@@ -30,6 +30,8 @@ repositories {
30
  }
31
 
32
  dependencies {
 
 
33
  implementation fileTree(include: ['*.jar'], dir: 'libs')
34
  implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
35
  implementation project(':capacitor-android')
30
  }
31
 
32
  dependencies {
33
+ implementation "androidx.core:core-splashscreen:$coreSplashScreenVersion"
34
+ implementation "androidx.coordinatorlayout:coordinatorlayout:$androidxCoordinatorLayoutVersion"
35
  implementation fileTree(include: ['*.jar'], dir: 'libs')
36
  implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
37
  implementation project(':capacitor-android')
android/app/capacitor.build.gradle CHANGED
@@ -2,8 +2,8 @@
2
 
3
  android {
4
  compileOptions {
5
- sourceCompatibility JavaVersion.VERSION_1_8
6
- targetCompatibility JavaVersion.VERSION_1_8
7
  }
8
  }
9
 
@@ -14,6 +14,7 @@ dependencies {
14
  implementation project(':capacitor-geolocation')
15
  implementation project(':capacitor-haptics')
16
  implementation project(':capacitor-keyboard')
 
17
  implementation project(':capacitor-share')
18
  implementation project(':capacitor-splash-screen')
19
  implementation project(':capacitor-status-bar')
2
 
3
  android {
4
  compileOptions {
5
+ sourceCompatibility JavaVersion.VERSION_11
6
+ targetCompatibility JavaVersion.VERSION_11
7
  }
8
  }
9
 
14
  implementation project(':capacitor-geolocation')
15
  implementation project(':capacitor-haptics')
16
  implementation project(':capacitor-keyboard')
17
+ implementation project(':capacitor-preferences')
18
  implementation project(':capacitor-share')
19
  implementation project(':capacitor-splash-screen')
20
  implementation project(':capacitor-status-bar')
android/app/src/main/AndroidManifest.xml CHANGED
@@ -14,7 +14,8 @@
14
  android:name="com.ionicthemes.ionic5fullapp.MainActivity"
15
  android:label="@string/title_activity_main"
16
  android:theme="@style/AppTheme.NoActionBarLaunch"
17
- android:launchMode="singleTask">
 
18
 
19
  <intent-filter>
20
  <action android:name="android.intent.action.MAIN" />
14
  android:name="com.ionicthemes.ionic5fullapp.MainActivity"
15
  android:label="@string/title_activity_main"
16
  android:theme="@style/AppTheme.NoActionBarLaunch"
17
+ android:launchMode="singleTask"
18
+ android:exported="true">
19
 
20
  <intent-filter>
21
  <action android:name="android.intent.action.MAIN" />
android/app/src/main/assets/capacitor.plugins.json CHANGED
@@ -1,7 +1,7 @@
1
  [
2
  {
3
  "pkg": "@capacitor-firebase/authentication",
4
- "classpath": "dev.robingenz.capacitorjs.plugins.firebase.authentication.FirebaseAuthenticationPlugin"
5
  },
6
  {
7
  "pkg": "@capacitor/app",
@@ -19,6 +19,10 @@
19
  "pkg": "@capacitor/keyboard",
20
  "classpath": "com.capacitorjs.plugins.keyboard.KeyboardPlugin"
21
  },
 
 
 
 
22
  {
23
  "pkg": "@capacitor/share",
24
  "classpath": "com.capacitorjs.plugins.share.SharePlugin"
1
  [
2
  {
3
  "pkg": "@capacitor-firebase/authentication",
4
+ "classpath": "io.capawesome.capacitorjs.plugins.firebase.authentication.FirebaseAuthenticationPlugin"
5
  },
6
  {
7
  "pkg": "@capacitor/app",
19
  "pkg": "@capacitor/keyboard",
20
  "classpath": "com.capacitorjs.plugins.keyboard.KeyboardPlugin"
21
  },
22
+ {
23
+ "pkg": "@capacitor/preferences",
24
+ "classpath": "com.capacitorjs.plugins.preferences.PreferencesPlugin"
25
+ },
26
  {
27
  "pkg": "@capacitor/share",
28
  "classpath": "com.capacitorjs.plugins.share.SharePlugin"
android/app/src/main/assets/public/index.html CHANGED
@@ -1,13 +1,11 @@
1
- <!doctype html>
2
- <html lang="en">
3
- <head>
4
  <meta charset="utf-8">
5
 
6
  <meta name="robots" content="noindex, nofollow">
7
 
8
  <title>Ionic Full Starter App</title>
9
 
10
- <base href="/"/>
11
 
12
  <meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
13
  <meta name="format-detection" content="telephone=no">
@@ -40,17 +38,17 @@
40
  <!-- Default@2x~iphone -->
41
  <link rel="apple-touch-startup-image" href="assets/splash/splash-640x960.png">
42
  <!-- Default-568h@2x~iphone.png -->
43
- <link rel="apple-touch-startup-image" sizes="640x1136" href="assets/splash/splash-640x1136.png"/>
44
  <!-- Default-667h -->
45
- <link rel="apple-touch-startup-image" sizes="750x1334" href="assets/splash/splash-750x1334.png"/>
46
  <!-- Default-736h -->
47
- <link rel="apple-touch-startup-image" sizes="1242x2208" href="assets/splash/splash-1242x2208.png"/>
48
  <!-- Default-Portrait~ipad -->
49
- <link rel="apple-touch-startup-image" sizes="768x1024" href="assets/splash/splash-768x1024.png"/>
50
  <!-- Default-Portrait@2x~ipad -->
51
- <link rel="apple-touch-startup-image" sizes="1536x2048" href="assets/splash/splash-1536x2048.png"/>
52
  <!-- Default-Portrait@~ipadpro -->
53
- <link rel="apple-touch-startup-image" sizes="2048x2732" href="assets/splash/splash-2048x2732.png"/>
54
 
55
  <!-- Traditional way was inconsistent, trying an approach with media attribute -->
56
  <!-- (see: https://stackoverflow.com/a/51330076/1116959) -->
@@ -97,7 +95,7 @@
97
  <meta property="og:description" content="Your app description">
98
  <meta property="og:url" content="">
99
  <meta property="og:site_name" content="YourSiteName">
100
- <link rel="stylesheet" href="styles.css"></head>
101
  <body>
102
  <!-- Ver: https://github.com/mhartington/StarTrack-ng/blob/master/src/index.html -->
103
  <!-- Esto lo agregamos para llegar a 100% PWA en lighthouse (Does not provide fallback content when JavaScript is not available) -->
@@ -107,5 +105,6 @@
107
  </h3>
108
  </noscript>
109
  <app-root></app-root>
110
- <script src="runtime.js" type="module"></script><script src="polyfills.js" type="module"></script><script src="vendor.js" type="module"></script><script src="main.js" type="module"></script></body>
111
- </html>
 
1
+ <!DOCTYPE html><html lang="en"><head>
 
 
2
  <meta charset="utf-8">
3
 
4
  <meta name="robots" content="noindex, nofollow">
5
 
6
  <title>Ionic Full Starter App</title>
7
 
8
+ <base href="/">
9
 
10
  <meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
11
  <meta name="format-detection" content="telephone=no">
38
  <!-- Default@2x~iphone -->
39
  <link rel="apple-touch-startup-image" href="assets/splash/splash-640x960.png">
40
  <!-- Default-568h@2x~iphone.png -->
41
+ <link rel="apple-touch-startup-image" sizes="640x1136" href="assets/splash/splash-640x1136.png">
42
  <!-- Default-667h -->
43
+ <link rel="apple-touch-startup-image" sizes="750x1334" href="assets/splash/splash-750x1334.png">
44
  <!-- Default-736h -->
45
+ <link rel="apple-touch-startup-image" sizes="1242x2208" href="assets/splash/splash-1242x2208.png">
46
  <!-- Default-Portrait~ipad -->
47
+ <link rel="apple-touch-startup-image" sizes="768x1024" href="assets/splash/splash-768x1024.png">
48
  <!-- Default-Portrait@2x~ipad -->
49
+ <link rel="apple-touch-startup-image" sizes="1536x2048" href="assets/splash/splash-1536x2048.png">
50
  <!-- Default-Portrait@~ipadpro -->
51
+ <link rel="apple-touch-startup-image" sizes="2048x2732" href="assets/splash/splash-2048x2732.png">
52
 
53
  <!-- Traditional way was inconsistent, trying an approach with media attribute -->
54
  <!-- (see: https://stackoverflow.com/a/51330076/1116959) -->
95
  <meta property="og:description" content="Your app description">
96
  <meta property="og:url" content="">
97
  <meta property="og:site_name" content="YourSiteName">
98
+ <style>@import"https://fonts.googleapis.com/css?family=Rubik:300,400,500,700";:root{--ion-color-primary:#1C1C1C;--ion-color-primary-rgb:28,28,28;--ion-color-primary-contrast:#ffffff;--ion-color-primary-contrast-rgb:255,255,255;--ion-color-primary-shade:#191919;--ion-color-primary-tint:#333333;--ion-color-secondary:#FF0062;--ion-color-secondary-rgb:255,0,98;--ion-color-secondary-contrast:#ffffff;--ion-color-secondary-contrast-rgb:255,255,255;--ion-color-secondary-shade:#e00056;--ion-color-secondary-tint:#ff1a72;--ion-color-tertiary:#00AFFF;--ion-color-tertiary-rgb:0,175,255;--ion-color-tertiary-contrast:#000000;--ion-color-tertiary-contrast-rgb:0,0,0;--ion-color-tertiary-shade:#009ae0;--ion-color-tertiary-tint:#1ab7ff;--ion-color-success:#20dc6a;--ion-color-success-rgb:32,220,106;--ion-color-success-contrast:#000000;--ion-color-success-contrast-rgb:0,0,0;--ion-color-success-shade:#1cc25d;--ion-color-success-tint:#36e079;--ion-color-warning:#ffed11;--ion-color-warning-rgb:255,237,17;--ion-color-warning-contrast:#000000;--ion-color-warning-contrast-rgb:0,0,0;--ion-color-warning-shade:#e0d10f;--ion-color-warning-tint:#ffef29;--ion-color-danger:#f4344f;--ion-color-danger-rgb:244,52,79;--ion-color-danger-contrast:#ffffff;--ion-color-danger-contrast-rgb:255,255,255;--ion-color-danger-shade:#d72e46;--ion-color-danger-tint:#f54861;--ion-color-lightest:#FFFFFF;--ion-color-lightest-rgb:255,255,255;--ion-color-light:#f4f5f8;--ion-color-light-rgb:244,244,244;--ion-color-light-contrast:#000000;--ion-color-light-contrast-rgb:0,0,0;--ion-color-light-shade:#d7d8da;--ion-color-light-shade-rgb:215,216,218;--ion-color-light-tint:#f5f6f9;--ion-color-light-tint-rgb:245,246,249;--ion-color-medium:#989aa2;--ion-color-medium-rgb:152,154,162;--ion-color-medium-contrast:#ffffff;--ion-color-medium-contrast-rgb:255,255,255;--ion-color-medium-shade:#86888f;--ion-color-medium-shade-rgb:134,136,143;--ion-color-medium-tint:#a2a4ab;--ion-color-medium-tint-rgb:162,164,171;--ion-color-dark:#222428;--ion-color-dark-rgb:34,34,34;--ion-color-dark-contrast:#ffffff;--ion-color-dark-contrast-rgb:255,255,255;--ion-color-dark-shade:#1e2023;--ion-color-dark-shade-rgb:30,32,35;--ion-color-dark-tint:#383a3e;--ion-color-dark-tint-rgb:56,58,62;--ion-color-darkest:#000000;--ion-color-darkest-rgb:0,0,0}:root{--ion-font-family:"Rubik", sans-serif;--app-background:#FFFFFF;--app-background-shade:var(--ion-background-color-step-50, #F2F2F2);--app-background-alt:var(--ion-color-primary);--app-background-alt-shade:var(--ion-color-primary-shade);--app-narrow-margin:12px;--app-fair-margin:16px;--app-broad-margin:20px;--app-narrow-radius:4px;--app-fair-radius:8px;--app-broad-radius:12px}html{--ion-font-family:var(--ion-default-font)}body{background:var(--ion-background-color)}@supports (padding-top: 20px){html{--ion-safe-area-top:var(--ion-statusbar-padding)}}@supports (padding-top: constant(safe-area-inset-top)){html{--ion-safe-area-top:constant(safe-area-inset-top);--ion-safe-area-bottom:constant(safe-area-inset-bottom);--ion-safe-area-left:constant(safe-area-inset-left);--ion-safe-area-right:constant(safe-area-inset-right)}}@supports (padding-top: env(safe-area-inset-top)){html{--ion-safe-area-top:env(safe-area-inset-top);--ion-safe-area-bottom:env(safe-area-inset-bottom);--ion-safe-area-left:env(safe-area-inset-left);--ion-safe-area-right:env(safe-area-inset-right)}}*{box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}html{width:100%;height:100%;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%}html:not(.hydrated) body{display:none}body{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;margin:0;padding:0;position:fixed;width:100%;max-width:100%;height:100%;max-height:100%;transform:translateZ(0);text-rendering:optimizeLegibility;overflow:hidden;touch-action:manipulation;-webkit-user-drag:none;-ms-content-zooming:none;word-wrap:break-word;overscroll-behavior-y:none;-webkit-text-size-adjust:none;-moz-text-size-adjust:none;text-size-adjust:none}html{font-family:var(--ion-font-family)}:root{--swiper-theme-color:#007aff}:root{--ion-color-facebook:#3b5998;--ion-color-facebook-rgb:59,89,152;--ion-color-facebook-contrast:#ffffff;--ion-color-facebook-contrast-rgb:255,255,255;--ion-color-facebook-shade:#344e86;--ion-color-facebook-tint:#4f6aa2;--ion-color-google:#cc181e;--ion-color-google-rgb:204,24,30;--ion-color-google-contrast:#ffffff;--ion-color-google-contrast-rgb:255,255,255;--ion-color-google-shade:#b4151a;--ion-color-google-tint:#d12f35;--ion-color-twitter:#00aced;--ion-color-twitter-rgb:0,172,237;--ion-color-twitter-contrast:#ffffff;--ion-color-twitter-contrast-rgb:255,255,255;--ion-color-twitter-shade:#0097d1;--ion-color-twitter-tint:#1ab4ef}html{line-height:1.5}</style><link rel="stylesheet" href="styles.8a79455731d745b4.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.8a79455731d745b4.css"></noscript></head>
99
  <body>
100
  <!-- Ver: https://github.com/mhartington/StarTrack-ng/blob/master/src/index.html -->
101
  <!-- Esto lo agregamos para llegar a 100% PWA en lighthouse (Does not provide fallback content when JavaScript is not available) -->
105
  </h3>
106
  </noscript>
107
  <app-root></app-root>
108
+ <script src="runtime.4c7063f1f6dd1bd5.js" type="module"></script><script src="polyfills.58fdb1fd5aafd005.js" type="module"></script><script src="main.631678a47a9ae9b4.js" type="module"></script>
109
+
110
+ </body></html>
android/app/src/main/res/values/styles.xml CHANGED
@@ -9,14 +9,14 @@
9
  <item name="colorAccent">@color/colorAccent</item>
10
  </style>
11
 
12
- <style name="AppTheme.NoActionBar" parent="Theme.AppCompat.NoActionBar">
13
  <item name="windowActionBar">false</item>
14
  <item name="windowNoTitle">true</item>
15
  <item name="android:background">@null</item>
16
  </style>
17
 
18
 
19
- <style name="AppTheme.NoActionBarLaunch" parent="AppTheme.NoActionBar">
20
  <item name="android:background">@drawable/splash</item>
21
  </style>
22
  </resources>
9
  <item name="colorAccent">@color/colorAccent</item>
10
  </style>
11
 
12
+ <style name="AppTheme.NoActionBar" parent="Theme.AppCompat.DayNight.NoActionBar">
13
  <item name="windowActionBar">false</item>
14
  <item name="windowNoTitle">true</item>
15
  <item name="android:background">@null</item>
16
  </style>
17
 
18
 
19
+ <style name="AppTheme.NoActionBarLaunch" parent="Theme.SplashScreen">
20
  <item name="android:background">@drawable/splash</item>
21
  </style>
22
  </resources>
android/build.gradle CHANGED
@@ -20,8 +20,8 @@ buildscript {
20
  }
21
  }
22
  dependencies {
23
- classpath 'com.android.tools.build:gradle:7.2.0'
24
- classpath 'com.google.gms:google-services:4.3.10'
25
 
26
  // NOTE: Do not place your application dependencies here; they belong
27
  // in the individual module build.gradle files
@@ -54,3 +54,4 @@ allprojects {
54
  task clean(type: Delete) {
55
  delete rootProject.buildDir
56
  }
 
20
  }
21
  }
22
  dependencies {
23
+ classpath 'com.android.tools.build:gradle:7.2.1'
24
+ classpath 'com.google.gms:google-services:4.3.13'
25
 
26
  // NOTE: Do not place your application dependencies here; they belong
27
  // in the individual module build.gradle files
54
  task clean(type: Delete) {
55
  delete rootProject.buildDir
56
  }
57
+
android/capacitor-cordova-android-plugins/build.gradle CHANGED
@@ -1,25 +1,25 @@
1
  ext {
2
- androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.2.0'
3
- cordovaAndroidVersion = project.hasProperty('cordovaAndroidVersion') ? rootProject.ext.cordovaAndroidVersion : '7.0.0'
4
  }
5
 
6
  buildscript {
7
  repositories {
8
  google()
9
- jcenter()
10
  }
11
  dependencies {
12
- classpath 'com.android.tools.build:gradle:4.2.1'
13
  }
14
  }
15
 
16
  apply plugin: 'com.android.library'
17
 
18
  android {
19
- compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 30
20
  defaultConfig {
21
- minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 21
22
- targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 30
23
  versionCode 1
24
  versionName "1.0"
25
  }
@@ -27,15 +27,14 @@ android {
27
  abortOnError false
28
  }
29
  compileOptions {
30
- sourceCompatibility JavaVersion.VERSION_1_8
31
- targetCompatibility JavaVersion.VERSION_1_8
32
  }
33
  }
34
 
35
  repositories {
36
  google()
37
  mavenCentral()
38
- jcenter()
39
  flatDir{
40
  dirs 'src/main/libs', 'libs'
41
  }
1
  ext {
2
+ androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.4.1'
3
+ cordovaAndroidVersion = project.hasProperty('cordovaAndroidVersion') ? rootProject.ext.cordovaAndroidVersion : '10.1.1'
4
  }
5
 
6
  buildscript {
7
  repositories {
8
  google()
9
+ mavenCentral()
10
  }
11
  dependencies {
12
+ classpath 'com.android.tools.build:gradle:7.2.1'
13
  }
14
  }
15
 
16
  apply plugin: 'com.android.library'
17
 
18
  android {
19
+ compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 32
20
  defaultConfig {
21
+ minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 22
22
+ targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 32
23
  versionCode 1
24
  versionName "1.0"
25
  }
27
  abortOnError false
28
  }
29
  compileOptions {
30
+ sourceCompatibility JavaVersion.VERSION_11
31
+ targetCompatibility JavaVersion.VERSION_11
32
  }
33
  }
34
 
35
  repositories {
36
  google()
37
  mavenCentral()
 
38
  flatDir{
39
  dirs 'src/main/libs', 'libs'
40
  }
android/capacitor-cordova-android-plugins/cordova.variables.gradle CHANGED
@@ -1,6 +1,6 @@
1
  // DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN
2
  ext {
3
- cdvMinSdkVersion = project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 21
4
  // Plugin gradle extensions can append to this to have code run at the end.
5
  cdvPluginPostBuildExtras = []
6
  cordovaConfig = [:]
1
  // DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN
2
  ext {
3
+ cdvMinSdkVersion = project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 22
4
  // Plugin gradle extensions can append to this to have code run at the end.
5
  cdvPluginPostBuildExtras = []
6
  cordovaConfig = [:]
android/capacitor.settings.gradle CHANGED
@@ -17,6 +17,9 @@ project(':capacitor-haptics').projectDir = new File('../node_modules/@capacitor/
17
  include ':capacitor-keyboard'
18
  project(':capacitor-keyboard').projectDir = new File('../node_modules/@capacitor/keyboard/android')
19
 
 
 
 
20
  include ':capacitor-share'
21
  project(':capacitor-share').projectDir = new File('../node_modules/@capacitor/share/android')
22
 
17
  include ':capacitor-keyboard'
18
  project(':capacitor-keyboard').projectDir = new File('../node_modules/@capacitor/keyboard/android')
19
 
20
+ include ':capacitor-preferences'
21
+ project(':capacitor-preferences').projectDir = new File('../node_modules/@capacitor/preferences/android')
22
+
23
  include ':capacitor-share'
24
  project(':capacitor-share').projectDir = new File('../node_modules/@capacitor/share/android')
25
 
android/gradle/wrapper/gradle-wrapper.jar CHANGED
Binary file
android/gradle/wrapper/gradle-wrapper.properties CHANGED
@@ -1,6 +1,5 @@
1
- #Wed Jun 30 20:10:09 UYT 2021
2
  distributionBase=GRADLE_USER_HOME
3
  distributionPath=wrapper/dists
 
4
  zipStoreBase=GRADLE_USER_HOME
5
  zipStorePath=wrapper/dists
6
- distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
 
1
  distributionBase=GRADLE_USER_HOME
2
  distributionPath=wrapper/dists
3
+ distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
4
  zipStoreBase=GRADLE_USER_HOME
5
  zipStorePath=wrapper/dists
 
android/gradlew CHANGED
@@ -1,74 +1,129 @@
1
- #!/usr/bin/env bash
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  ##############################################################################
4
- ##
5
- ## Gradle start up script for UN*X
6
- ##
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  ##############################################################################
8
 
9
- # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
10
- DEFAULT_JVM_OPTS=""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
  APP_NAME="Gradle"
13
- APP_BASE_NAME=`basename "$0"`
 
 
 
14
 
15
  # Use the maximum available, or set MAX_FD != -1 to use that value.
16
- MAX_FD="maximum"
17
 
18
- warn ( ) {
19
  echo "$*"
20
- }
21
 
22
- die ( ) {
23
  echo
24
  echo "$*"
25
  echo
26
  exit 1
27
- }
28
 
29
  # OS specific support (must be 'true' or 'false').
30
  cygwin=false
31
  msys=false
32
  darwin=false
33
- case "`uname`" in
34
- CYGWIN* )
35
- cygwin=true
36
- ;;
37
- Darwin* )
38
- darwin=true
39
- ;;
40
- MINGW* )
41
- msys=true
42
- ;;
43
  esac
44
 
45
- # Attempt to set APP_HOME
46
- # Resolve links: $0 may be a link
47
- PRG="$0"
48
- # Need this for relative symlinks.
49
- while [ -h "$PRG" ] ; do
50
- ls=`ls -ld "$PRG"`
51
- link=`expr "$ls" : '.*-> \(.*\)$'`
52
- if expr "$link" : '/.*' > /dev/null; then
53
- PRG="$link"
54
- else
55
- PRG=`dirname "$PRG"`"/$link"
56
- fi
57
- done
58
- SAVED="`pwd`"
59
- cd "`dirname \"$PRG\"`/" >/dev/null
60
- APP_HOME="`pwd -P`"
61
- cd "$SAVED" >/dev/null
62
-
63
  CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
64
 
 
65
  # Determine the Java command to use to start the JVM.
66
  if [ -n "$JAVA_HOME" ] ; then
67
  if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
68
  # IBM's JDK on AIX uses strange locations for the executables
69
- JAVACMD="$JAVA_HOME/jre/sh/java"
70
  else
71
- JAVACMD="$JAVA_HOME/bin/java"
72
  fi
73
  if [ ! -x "$JAVACMD" ] ; then
74
  die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
@@ -77,7 +132,7 @@ Please set the JAVA_HOME variable in your environment to match the
77
  location of your Java installation."
78
  fi
79
  else
80
- JAVACMD="java"
81
  which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
82
 
83
  Please set the JAVA_HOME variable in your environment to match the
@@ -85,76 +140,95 @@ location of your Java installation."
85
  fi
86
 
87
  # Increase the maximum file descriptors if we can.
88
- if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
89
- MAX_FD_LIMIT=`ulimit -H -n`
90
- if [ $? -eq 0 ] ; then
91
- if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
92
- MAX_FD="$MAX_FD_LIMIT"
93
- fi
94
- ulimit -n $MAX_FD
95
- if [ $? -ne 0 ] ; then
96
- warn "Could not set maximum file descriptor limit: $MAX_FD"
97
- fi
98
- else
99
- warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
100
- fi
101
  fi
102
 
103
- # For Darwin, add options to specify how the application appears in the dock
104
- if $darwin; then
105
- GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
106
- fi
 
 
 
 
 
 
 
 
 
 
107
 
108
- # For Cygwin, switch paths to Windows format before running java
109
- if $cygwin ; then
110
- APP_HOME=`cygpath --path --mixed "$APP_HOME"`
111
- CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
112
- JAVACMD=`cygpath --unix "$JAVACMD"`
113
-
114
- # We build the pattern for arguments to be converted via cygpath
115
- ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
116
- SEP=""
117
- for dir in $ROOTDIRSRAW ; do
118
- ROOTDIRS="$ROOTDIRS$SEP$dir"
119
- SEP="|"
120
- done
121
- OURCYGPATTERN="(^($ROOTDIRS))"
122
- # Add a user-defined pattern to the cygpath arguments
123
- if [ "$GRADLE_CYGPATTERN" != "" ] ; then
124
- OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
125
- fi
126
  # Now convert the arguments - kludge to limit ourselves to /bin/sh
127
- i=0
128
- for arg in "$@" ; do
129
- CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
130
- CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
131
-
132
- if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
133
- eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
134
- else
135
- eval `echo args$i`="\"$arg\""
 
136
  fi
137
- i=$((i+1))
 
 
 
 
 
 
 
 
138
  done
139
- case $i in
140
- (0) set -- ;;
141
- (1) set -- "$args0" ;;
142
- (2) set -- "$args0" "$args1" ;;
143
- (3) set -- "$args0" "$args1" "$args2" ;;
144
- (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
145
- (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
146
- (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
147
- (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
148
- (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
149
- (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
150
- esac
151
  fi
152
 
153
- # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
154
- function splitJvmOpts() {
155
- JVM_OPTS=("$@")
156
- }
157
- eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
158
- JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
159
-
160
- exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+
3
+ #
4
+ # Copyright © 2015-2021 the original authors.
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # https://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #
18
 
19
  ##############################################################################
20
+ #
21
+ # Gradle start up script for POSIX generated by Gradle.
22
+ #
23
+ # Important for running:
24
+ #
25
+ # (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
26
+ # noncompliant, but you have some other compliant shell such as ksh or
27
+ # bash, then to run this script, type that shell name before the whole
28
+ # command line, like:
29
+ #
30
+ # ksh Gradle
31
+ #
32
+ # Busybox and similar reduced shells will NOT work, because this script
33
+ # requires all of these POSIX shell features:
34
+ # * functions;
35
+ # * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
36
+ # «${var#prefix}», «${var%suffix}», and «$( cmd )»;
37
+ # * compound commands having a testable exit status, especially «case»;
38
+ # * various built-in commands including «command», «set», and «ulimit».
39
+ #
40
+ # Important for patching:
41
+ #
42
+ # (2) This script targets any POSIX shell, so it avoids extensions provided
43
+ # by Bash, Ksh, etc; in particular arrays are avoided.
44
+ #
45
+ # The "traditional" practice of packing multiple parameters into a
46
+ # space-separated string is a well documented source of bugs and security
47
+ # problems, so this is (mostly) avoided, by progressively accumulating
48
+ # options in "$@", and eventually passing that to Java.
49
+ #
50
+ # Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
51
+ # and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
52
+ # see the in-line comments for details.
53
+ #
54
+ # There are tweaks for specific operating systems such as AIX, CygWin,
55
+ # Darwin, MinGW, and NonStop.
56
+ #
57
+ # (3) This script is generated from the Groovy template
58
+ # https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
59
+ # within the Gradle project.
60
+ #
61
+ # You can find Gradle at https://github.com/gradle/gradle/.
62
+ #
63
  ##############################################################################
64
 
65
+ # Attempt to set APP_HOME
66
+
67
+ # Resolve links: $0 may be a link
68
+ app_path=$0
69
+
70
+ # Need this for daisy-chained symlinks.
71
+ while
72
+ APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
73
+ [ -h "$app_path" ]
74
+ do
75
+ ls=$( ls -ld "$app_path" )
76
+ link=${ls#*' -> '}
77
+ case $link in #(
78
+ /*) app_path=$link ;; #(
79
+ *) app_path=$APP_HOME$link ;;
80
+ esac
81
+ done
82
+
83
+ APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
84
 
85
  APP_NAME="Gradle"
86
+ APP_BASE_NAME=${0##*/}
87
+
88
+ # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
89
+ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
90
 
91
  # Use the maximum available, or set MAX_FD != -1 to use that value.
92
+ MAX_FD=maximum
93
 
94
+ warn () {
95
  echo "$*"
96
+ } >&2
97
 
98
+ die () {
99
  echo
100
  echo "$*"
101
  echo
102
  exit 1
103
+ } >&2
104
 
105
  # OS specific support (must be 'true' or 'false').
106
  cygwin=false
107
  msys=false
108
  darwin=false
109
+ nonstop=false
110
+ case "$( uname )" in #(
111
+ CYGWIN* ) cygwin=true ;; #(
112
+ Darwin* ) darwin=true ;; #(
113
+ MSYS* | MINGW* ) msys=true ;; #(
114
+ NONSTOP* ) nonstop=true ;;
 
 
 
 
115
  esac
116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
  CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
118
 
119
+
120
  # Determine the Java command to use to start the JVM.
121
  if [ -n "$JAVA_HOME" ] ; then
122
  if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
123
  # IBM's JDK on AIX uses strange locations for the executables
124
+ JAVACMD=$JAVA_HOME/jre/sh/java
125
  else
126
+ JAVACMD=$JAVA_HOME/bin/java
127
  fi
128
  if [ ! -x "$JAVACMD" ] ; then
129
  die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
132
  location of your Java installation."
133
  fi
134
  else
135
+ JAVACMD=java
136
  which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
137
 
138
  Please set the JAVA_HOME variable in your environment to match the
140
  fi
141
 
142
  # Increase the maximum file descriptors if we can.
143
+ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
144
+ case $MAX_FD in #(
145
+ max*)
146
+ MAX_FD=$( ulimit -H -n ) ||
147
+ warn "Could not query maximum file descriptor limit"
148
+ esac
149
+ case $MAX_FD in #(
150
+ '' | soft) :;; #(
151
+ *)
152
+ ulimit -n "$MAX_FD" ||
153
+ warn "Could not set maximum file descriptor limit to $MAX_FD"
154
+ esac
 
155
  fi
156
 
157
+ # Collect all arguments for the java command, stacking in reverse order:
158
+ # * args from the command line
159
+ # * the main class name
160
+ # * -classpath
161
+ # * -D...appname settings
162
+ # * --module-path (only if needed)
163
+ # * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
164
+
165
+ # For Cygwin or MSYS, switch paths to Windows format before running java
166
+ if "$cygwin" || "$msys" ; then
167
+ APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
168
+ CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
169
+
170
+ JAVACMD=$( cygpath --unix "$JAVACMD" )
171
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  # Now convert the arguments - kludge to limit ourselves to /bin/sh
173
+ for arg do
174
+ if
175
+ case $arg in #(
176
+ -*) false ;; # don't mess with options #(
177
+ /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
178
+ [ -e "$t" ] ;; #(
179
+ *) false ;;
180
+ esac
181
+ then
182
+ arg=$( cygpath --path --ignore --mixed "$arg" )
183
  fi
184
+ # Roll the args list around exactly as many times as the number of
185
+ # args, so each arg winds up back in the position where it started, but
186
+ # possibly modified.
187
+ #
188
+ # NB: a `for` loop captures its iteration list before it begins, so
189
+ # changing the positional parameters here affects neither the number of
190
+ # iterations, nor the values presented in `arg`.
191
+ shift # remove old arg
192
+ set -- "$@" "$arg" # push replacement arg
193
  done
 
 
 
 
 
 
 
 
 
 
 
 
194
  fi
195
 
196
+ # Collect all arguments for the java command;
197
+ # * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
198
+ # shell script including quotes and variable substitutions, so put them in
199
+ # double quotes to make sure that they get re-expanded; and
200
+ # * put everything else in single quotes, so that it's not re-expanded.
201
+
202
+ set -- \
203
+ "-Dorg.gradle.appname=$APP_BASE_NAME" \
204
+ -classpath "$CLASSPATH" \
205
+ org.gradle.wrapper.GradleWrapperMain \
206
+ "$@"
207
+
208
+ # Use "xargs" to parse quoted args.
209
+ #
210
+ # With -n1 it outputs one arg per line, with the quotes and backslashes removed.
211
+ #
212
+ # In Bash we could simply go:
213
+ #
214
+ # readarray ARGS < <( xargs -n1 <<<"$var" ) &&
215
+ # set -- "${ARGS[@]}" "$@"
216
+ #
217
+ # but POSIX shell has neither arrays nor command substitution, so instead we
218
+ # post-process each arg (as a line of input to sed) to backslash-escape any
219
+ # character that might be a shell metacharacter, then use eval to reverse
220
+ # that process (while maintaining the separation between arguments), and wrap
221
+ # the whole thing up as a single "set" statement.
222
+ #
223
+ # This will of course break if any of these variables contains a newline or
224
+ # an unmatched quote.
225
+ #
226
+
227
+ eval "set -- $(
228
+ printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
229
+ xargs -n1 |
230
+ sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
231
+ tr '\n' ' '
232
+ )" '"$@"'
233
+
234
+ exec "$JAVACMD" "$@"
android/gradlew.bat CHANGED
@@ -1,3 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  @if "%DEBUG%" == "" @echo off
2
  @rem ##########################################################################
3
  @rem
@@ -8,20 +24,23 @@
8
  @rem Set local scope for the variables with windows NT shell
9
  if "%OS%"=="Windows_NT" setlocal
10
 
11
- @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
12
- set DEFAULT_JVM_OPTS=
13
-
14
  set DIRNAME=%~dp0
15
  if "%DIRNAME%" == "" set DIRNAME=.
16
  set APP_BASE_NAME=%~n0
17
  set APP_HOME=%DIRNAME%
18
 
 
 
 
 
 
 
19
  @rem Find java.exe
20
  if defined JAVA_HOME goto findJavaFromJavaHome
21
 
22
  set JAVA_EXE=java.exe
23
  %JAVA_EXE% -version >NUL 2>&1
24
- if "%ERRORLEVEL%" == "0" goto init
25
 
26
  echo.
27
  echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
@@ -35,7 +54,7 @@ goto fail
35
  set JAVA_HOME=%JAVA_HOME:"=%
36
  set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37
 
38
- if exist "%JAVA_EXE%" goto init
39
 
40
  echo.
41
  echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
@@ -45,34 +64,14 @@ echo location of your Java installation.
45
 
46
  goto fail
47
 
48
- :init
49
- @rem Get command-line arguments, handling Windowz variants
50
-
51
- if not "%OS%" == "Windows_NT" goto win9xME_args
52
- if "%@eval[2+2]" == "4" goto 4NT_args
53
-
54
- :win9xME_args
55
- @rem Slurp the command line arguments.
56
- set CMD_LINE_ARGS=
57
- set _SKIP=2
58
-
59
- :win9xME_args_slurp
60
- if "x%~1" == "x" goto execute
61
-
62
- set CMD_LINE_ARGS=%*
63
- goto execute
64
-
65
- :4NT_args
66
- @rem Get arguments from the 4NT Shell from JP Software
67
- set CMD_LINE_ARGS=%$
68
-
69
  :execute
70
  @rem Setup the command line
71
 
72
  set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73
 
 
74
  @rem Execute Gradle
75
- "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
76
 
77
  :end
78
  @rem End local scope for the variables with windows NT shell
1
+ @rem
2
+ @rem Copyright 2015 the original author or authors.
3
+ @rem
4
+ @rem Licensed under the Apache License, Version 2.0 (the "License");
5
+ @rem you may not use this file except in compliance with the License.
6
+ @rem You may obtain a copy of the License at
7
+ @rem
8
+ @rem https://www.apache.org/licenses/LICENSE-2.0
9
+ @rem
10
+ @rem Unless required by applicable law or agreed to in writing, software
11
+ @rem distributed under the License is distributed on an "AS IS" BASIS,
12
+ @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ @rem See the License for the specific language governing permissions and
14
+ @rem limitations under the License.
15
+ @rem
16
+
17
  @if "%DEBUG%" == "" @echo off
18
  @rem ##########################################################################
19
  @rem
24
  @rem Set local scope for the variables with windows NT shell
25
  if "%OS%"=="Windows_NT" setlocal
26
 
 
 
 
27
  set DIRNAME=%~dp0
28
  if "%DIRNAME%" == "" set DIRNAME=.
29
  set APP_BASE_NAME=%~n0
30
  set APP_HOME=%DIRNAME%
31
 
32
+ @rem Resolve any "." and ".." in APP_HOME to make it shorter.
33
+ for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
34
+
35
+ @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
36
+ set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
37
+
38
  @rem Find java.exe
39
  if defined JAVA_HOME goto findJavaFromJavaHome
40
 
41
  set JAVA_EXE=java.exe
42
  %JAVA_EXE% -version >NUL 2>&1
43
+ if "%ERRORLEVEL%" == "0" goto execute
44
 
45
  echo.
46
  echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
54
  set JAVA_HOME=%JAVA_HOME:"=%
55
  set JAVA_EXE=%JAVA_HOME%/bin/java.exe
56
 
57
+ if exist "%JAVA_EXE%" goto execute
58
 
59
  echo.
60
  echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
64
 
65
  goto fail
66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  :execute
68
  @rem Setup the command line
69
 
70
  set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
71
 
72
+
73
  @rem Execute Gradle
74
+ "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
75
 
76
  :end
77
  @rem End local scope for the variables with windows NT shell
android/variables.gradle CHANGED
@@ -1,16 +1,18 @@
1
  ext {
2
- minSdkVersion = 21
3
- compileSdkVersion = 30
4
- targetSdkVersion = 30
5
- androidxActivityVersion = '1.2.0'
6
- androidxAppCompatVersion = '1.2.0'
7
- androidxCoordinatorLayoutVersion = '1.1.0'
8
- androidxCoreVersion = '1.3.2'
9
- androidxFragmentVersion = '1.3.0'
10
- junitVersion = '4.13.1'
11
- androidxJunitVersion = '1.1.2'
12
- androidxEspressoCoreVersion = '3.3.0'
13
- cordovaAndroidVersion = '7.0.0'
14
  rgcfaIncludeFacebook = true
15
  rgcfaIncludeGoogle = true
 
 
16
  }
1
  ext {
2
+ minSdkVersion = 22
3
+ compileSdkVersion = 32
4
+ targetSdkVersion = 32
5
+ androidxActivityVersion = '1.4.0'
6
+ androidxAppCompatVersion = '1.4.2'
7
+ androidxCoordinatorLayoutVersion = '1.2.0'
8
+ androidxCoreVersion = '1.8.0'
9
+ androidxFragmentVersion = '1.4.1'
10
+ junitVersion = '4.13.2'
11
+ androidxJunitVersion = '1.1.3'
12
+ androidxEspressoCoreVersion = '3.4.0'
13
+ cordovaAndroidVersion = '10.1.1'
14
  rgcfaIncludeFacebook = true
15
  rgcfaIncludeGoogle = true
16
+ coreSplashScreenVersion = '1.0.0-rc01'
17
+ androidxWebkitVersion = '1.4.0'
18
  }