Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/example-app-capacitor/android/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apply plugin: 'com.android.application'

android {
namespace "com.capacitorjs.exampleucapp.plugins.geolocation"
compileSdk rootProject.ext.compileSdkVersion
namespace = "com.capacitorjs.exampleucapp.plugins.geolocation"
compileSdk = rootProject.ext.compileSdkVersion
defaultConfig {
applicationId "com.capacitorjs.exampleucapp.plugins.geolocation"
minSdkVersion rootProject.ext.minSdkVersion
Expand All @@ -13,7 +13,7 @@ android {
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
// Default: https://android.googlesource.com/platform/frameworks/base/+/282e181b58cf72b6ca770dc7ca5f91f135444502/tools/aapt/AaptAssets.cpp#61
ignoreAssetsPattern '!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~'
ignoreAssetsPattern = '!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~'
}
}
buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
dependencies {
implementation project(':capacitor-camera')
implementation project(':capacitor-splash-screen')
implementation project(':capacitor-geolocation')
implementation project(':capacitor-splash-screen')

}

Expand Down
6 changes: 3 additions & 3 deletions packages/example-app-capacitor/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.1'
classpath 'com.google.gms:google-services:4.4.0'
classpath 'com.android.tools.build:gradle:8.12.0'
classpath 'com.google.gms:google-services:4.4.3'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -24,6 +24,6 @@ allprojects {
}
}

task clean(type: Delete) {
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/
include ':capacitor-camera'
project(':capacitor-camera').projectDir = new File('../node_modules/@capacitor/camera/android')

include ':capacitor-splash-screen'
project(':capacitor-splash-screen').projectDir = new File('../node_modules/@capacitor/splash-screen/android')

include ':capacitor-geolocation'
project(':capacitor-geolocation').projectDir = new File('../../capacitor-plugin/android')

include ':capacitor-splash-screen'
project(':capacitor-splash-screen').projectDir = new File('../node_modules/@capacitor/splash-screen/android')
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
27 changes: 15 additions & 12 deletions packages/example-app-capacitor/android/gradlew

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

26 changes: 14 additions & 12 deletions packages/example-app-capacitor/android/gradlew.bat

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

12 changes: 6 additions & 6 deletions packages/example-app-capacitor/android/variables.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
ext {
minSdkVersion = 23
compileSdkVersion = 35
targetSdkVersion = 35
compileSdkVersion = 36
targetSdkVersion = 36
androidxActivityVersion = '1.8.0'
androidxAppCompatVersion = '1.7.0'
androidxCoordinatorLayoutVersion = '1.2.0'
androidxAppCompatVersion = '1.7.1'
androidxCoordinatorLayoutVersion = '1.3.0'
androidxCoreVersion = '1.12.0'
androidxFragmentVersion = '1.6.2'
coreSplashScreenVersion = '1.0.1'
androidxWebkitVersion = '1.9.0'
junitVersion = '4.13.2'
androidxJunitVersion = '1.1.5'
androidxEspressoCoreVersion = '3.5.1'
androidxJunitVersion = '1.3.0'
androidxEspressoCoreVersion = '3.7.0'
cordovaAndroidVersion = '10.1.1'
}
2 changes: 1 addition & 1 deletion packages/example-app-capacitor/ios/App/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ def capacitor_pods
pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'
pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
pod 'CapacitorCamera', :path => '../../node_modules/@capacitor/camera'
pod 'CapacitorSplashScreen', :path => '../../node_modules/@capacitor/splash-screen'
pod 'CapacitorGeolocation', :path => '../../../capacitor-plugin'
pod 'CapacitorSplashScreen', :path => '../../node_modules/@capacitor/splash-screen'
end

target 'App' do
Expand Down
22 changes: 11 additions & 11 deletions packages/example-app-capacitor/ios/App/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
PODS:
- Capacitor (7.0.1):
- Capacitor (7.4.2):
- CapacitorCordova
- CapacitorCamera (7.0.0):
- CapacitorCamera (7.0.2):
- Capacitor
- CapacitorCordova (7.0.1)
- CapacitorGeolocation (7.1.2):
- CapacitorCordova (7.4.2)
- CapacitorGeolocation (7.1.4):
- Capacitor
- IONGeolocationLib (~> 1.0)
- CapacitorSplashScreen (7.0.0):
- CapacitorSplashScreen (7.0.2):
- Capacitor
- IONGeolocationLib (1.0.0)

Expand Down Expand Up @@ -35,13 +35,13 @@ EXTERNAL SOURCES:
:path: "../../node_modules/@capacitor/splash-screen"

SPEC CHECKSUMS:
Capacitor: de199cba6c8b20995428ad0b7cb0bc6ca625ffd4
CapacitorCamera: 20a37684b81c69c0c33fb5a7216919f135371a6f
CapacitorCordova: 63d476958d5022d76f197031e8b7ea3519988c64
CapacitorGeolocation: b005744861676af9abd19a0682f0b1af32cc2c99
CapacitorSplashScreen: 7e7a0a1113833032f196b3af6fa437baccacf5bc
Capacitor: 9d9e481b79ffaeacaf7a85d6a11adec32bd33b59
CapacitorCamera: f9e54db0a18bb218a8dc360907d63aaefe9209ff
CapacitorCordova: 5e58d04631bc5094894ac106e2bf1da18a9e6151
CapacitorGeolocation: 32a1f849c38c72b5071de36a28ebc548ef3bb611
CapacitorSplashScreen: 157947576b59d913792063a8d442a79e6d283ee5
IONGeolocationLib: 81f33f88d025846946de2cf63b0c7628e7c6bc9d

PODFILE CHECKSUM: 6e3f0881e9bf33b13c7f481b07ee65b5c9321cb0
PODFILE CHECKSUM: 4905fe4dc2d842165f294ace1a4f425905f0e7fe

COCOAPODS: 1.16.2
Loading