Skip to content

Commit

Permalink
CU-868a3neq0 angular build working
Browse files Browse the repository at this point in the history
  • Loading branch information
ucswift committed Oct 7, 2024
1 parent 3f94d54 commit e7a480c
Show file tree
Hide file tree
Showing 9 changed files with 538 additions and 67 deletions.
329 changes: 329 additions & 0 deletions android/.idea/other.xml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@ try {
apply plugin: 'com.google.gms.google-services'
}
} catch(Exception e) {
logger.warn("google-services.json not found, google-services plugin not applied. Push Notifications won't work")
}
logger.info("google-services.json not found, google-services plugin not applied. Push Notifications won't work")
}
4 changes: 2 additions & 2 deletions android/app/capacitor.build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}

Expand Down
5 changes: 2 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ buildscript {
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.1'
classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.android.tools.build:gradle:8.2.1'
classpath 'com.google.gms:google-services:4.4.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -29,4 +29,3 @@ allprojects {
task clean(type: Delete) {
delete rootProject.buildDir
}

3 changes: 2 additions & 1 deletion android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Sun Oct 06 20:32:38 PDT 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
12 changes: 6 additions & 6 deletions android/variables.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
ext {
minSdkVersion = 22
compileSdkVersion = 33
targetSdkVersion = 33
androidxActivityVersion = '1.7.2'
compileSdkVersion = 34
targetSdkVersion = 34
androidxActivityVersion = '1.8.0'
androidxAppCompatVersion = '1.6.1'
androidxCoordinatorLayoutVersion = '1.2.0'
androidxCoreVersion = '1.10.1'
androidxFragmentVersion = '1.6.1'
androidxCoreVersion = '1.12.0'
androidxFragmentVersion = '1.6.2'
coreSplashScreenVersion = '1.0.1'
androidxWebkitVersion = '1.7.0'
androidxWebkitVersion = '1.9.0'
junitVersion = '4.13.2'
androidxJunitVersion = '1.1.5'
androidxEspressoCoreVersion = '3.5.1'
Expand Down
24 changes: 23 additions & 1 deletion ios/App/App/capacitor.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,27 @@
"CapacitorHttp": {
"enabled": true
}
}
},
"packageClassList": [
"BackgroundGeolocation",
"BluetoothLe",
"FileOpenerPlugin",
"KeepAwakePlugin",
"CapacitorSQLitePlugin",
"AppPlugin",
"CAPCameraPlugin",
"DevicePlugin",
"FilesystemPlugin",
"GeolocationPlugin",
"HapticsPlugin",
"KeyboardPlugin",
"CAPNetworkPlugin",
"PreferencesPlugin",
"SplashScreenPlugin",
"StatusBarPlugin",
"BadgePlugin",
"LocalNotificationsPlugin",
"PushNotificationsPlugin",
"ResgridPlugin"
]
}
222 changes: 171 additions & 51 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e7a480c

Please sign in to comment.