-
Notifications
You must be signed in to change notification settings - Fork 18
Support Cap 7 #35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Support Cap 7 #35
Changes from all commits
ecd2c5a
3d72dcc
1721c3e
38b9595
37360f9
d236a59
bbe0635
1739bab
5deebc9
07c9f7c
6e2c249
1ebb29a
f8ca849
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,12 +12,12 @@ Capacitor plugin for connecting and using services by Apple Game Center and Goog | |
| --- | ||
|
|
||
| | Capacitor Version | Support Status | | ||
| | ----------- | :----: | | ||
| | Capacitor v5 | ✅ | | ||
| | Capacitor v4 | ✅ | | ||
| | Capacitor v3 | ✅ | | ||
| | Capacitor v2 | ❌ | | ||
| | Capacitor v1 | ❌ | | ||
| |-------------------|:--------------:| | ||
| | Capacitor v7 | TESTING | | ||
|
||
| | Capacitor v6 | ✅ | | ||
| | Capacitor v5 | ✅ | | ||
| | Capacitor v4 | ✅ | | ||
| | Capacitor v3 | ✅ | | ||
|
|
||
| ✅ - Supported | ||
| 🚧 - WIP Support | ||
|
|
||
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,8 +1,8 @@ | ||||||||||
| ext { | ||||||||||
| junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.2' | ||||||||||
| androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1' | ||||||||||
| androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.5' | ||||||||||
| androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1' | ||||||||||
| androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.7.1' | ||||||||||
| androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.2.1' | ||||||||||
| androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.6.1' | ||||||||||
| } | ||||||||||
|
|
||||||||||
| buildscript { | ||||||||||
|
|
@@ -11,18 +11,18 @@ buildscript { | |||||||||
| mavenCentral() | ||||||||||
| } | ||||||||||
| dependencies { | ||||||||||
| classpath 'com.android.tools.build:gradle:8.0.0-beta03' | ||||||||||
| classpath 'com.android.tools.build:gradle:8.7.2' | ||||||||||
| } | ||||||||||
| } | ||||||||||
|
|
||||||||||
| apply plugin: 'com.android.library' | ||||||||||
|
|
||||||||||
| android { | ||||||||||
| namespace "com.openforge.capacitorgameconnect" | ||||||||||
| compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 33 | ||||||||||
| compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 35 | ||||||||||
| defaultConfig { | ||||||||||
| minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 22 | ||||||||||
| targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 33 | ||||||||||
| minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 23 | ||||||||||
| targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 35 | ||||||||||
| versionCode 1 | ||||||||||
| versionName "1.0" | ||||||||||
| testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | ||||||||||
|
|
@@ -33,12 +33,12 @@ android { | |||||||||
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||||||||||
| } | ||||||||||
| } | ||||||||||
| lintOptions { | ||||||||||
| lint { | ||||||||||
| abortOnError false | ||||||||||
| } | ||||||||||
| compileOptions { | ||||||||||
| sourceCompatibility JavaVersion.VERSION_17 | ||||||||||
| targetCompatibility JavaVersion.VERSION_17 | ||||||||||
| sourceCompatibility JavaVersion.VERSION_21 | ||||||||||
| targetCompatibility JavaVersion.VERSION_21 | ||||||||||
|
Comment on lines
+40
to
+41
|
||||||||||
| sourceCompatibility JavaVersion.VERSION_21 | |
| targetCompatibility JavaVersion.VERSION_21 | |
| sourceCompatibility JavaVersion.VERSION_17 | |
| targetCompatibility JavaVersion.VERSION_17 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| #Fri Sep 22 06:21:28 CST 2023 | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionPath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-all.zip | ||
| networkTimeout=10000 | ||
| validateDistributionUrl=true | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -4,5 +4,5 @@ | |||||||
| # Location of the SDK. This is only used by Gradle. | ||||||||
| # For customization when using a Version Control System, please read the | ||||||||
| # header note. | ||||||||
| #Wed Jul 12 16:16:16 CST 2023 | ||||||||
| sdk.dir=/Users/ricardomadrid/Library/Android/sdk | ||||||||
| #Mon Sep 29 22:50:37 PDT 2025 | ||||||||
| sdk.dir=/Users/aadikhanna/Library/Android/sdk | ||||||||
|
Comment on lines
+7
to
+8
|
||||||||
| #Mon Sep 29 22:50:37 PDT 2025 | |
| sdk.dir=/Users/aadikhanna/Library/Android/sdk | |
| sdk.dir=/path/to/Android/sdk |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@papiguy could you take a look at this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Swift version has been updated from 5.1 to 5.9. While this aligns with modern Swift versions, ensure that:
This is a significant version jump that may introduce breaking changes for consumers using older Xcode versions.